Files
vue-desktop/uno.config.ts

10 lines
319 B
TypeScript
Raw Permalink Normal View History

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