初始化

This commit is contained in:
2025-08-19 14:56:38 +08:00
parent 83b8ee11de
commit 9c9387f6c2
45 changed files with 4567 additions and 8 deletions

9
uno.config.ts Normal file
View File

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