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