redvault-ai/darm_test/uno.config.ts

32 lines
661 B
TypeScript
Raw Permalink Normal View History

2025-02-20 02:12:49 +01:00
// import presetAttributify from '@unocss/preset-attributify'
import {
defineConfig,
presetAttributify,
presetIcons,
presetTagify,
presetWind,
transformerDirectives,
transformerVariantGroup,
} from "unocss";
export default defineConfig({
content: {
filesystem: ["**/*.{html,js,ts,jsx,tsx,rs,rsx}"],
},
cli: {
entry: {
patterns: ["**/*.{html,js,ts,jsx,tsx,rs,rsx}"],
outFile: "./style/uno.css",
},
},
presets: [
presetAttributify({
/* preset options */
}),
presetTagify({}),
presetIcons({}),
presetWind({}),
],
transformers: [transformerDirectives(), transformerVariantGroup()],
});