23 lines
396 B
TypeScript
23 lines
396 B
TypeScript
import {
|
|
defineConfig,
|
|
presetAttributify,
|
|
presetTypography,
|
|
presetWind3,
|
|
transformerDirectives,
|
|
transformerVariantGroup,
|
|
} from 'unocss'
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetWind3(),
|
|
presetAttributify(),
|
|
presetTypography(),
|
|
],
|
|
transformers: [
|
|
transformerDirectives({
|
|
applyVariable: ['--at-apply'],
|
|
}),
|
|
transformerVariantGroup(),
|
|
],
|
|
})
|