10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
|
|
// uno.config.ts
|
||
|
|
import { defineConfig, transformerDirectives, transformerVariantGroup } from 'unocss'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
transformers: [
|
||
|
|
transformerVariantGroup(), // 允许像 "hover:(bg-red-500 text-white)" 这种写法
|
||
|
|
transformerDirectives(), // 解析 @apply / @screen / @unocss
|
||
|
|
],
|
||
|
|
})
|