mirror of
https://github.com/mfish-qf/mfish-nocode-view.git
synced 2026-08-29 00:40:47 +08:00
12 lines
262 B
Vue
12 lines
262 B
Vue
import { defineConfig, presetTypography } from "unocss";
|
|
import presetWind3 from "@unocss/preset-wind3";
|
|
|
|
export default defineConfig({
|
|
presets: [presetWind3(), presetTypography()],
|
|
content: {
|
|
pipeline: {
|
|
include: [/\.(vue|ts|tsx)$/]
|
|
}
|
|
}
|
|
});
|