Files
vue-ts-example-2025/vite-plugins/01.unocss.ts
严浩 a09b1da78d
Some checks failed
CI/CD Pipeline / build-and-deploy (push) Has been cancelled
CI/CD Pipeline / playwright (push) Has been cancelled
refactor(vite-plugins): 重新命名插件文件以优化加载顺序
2025-10-23 22:38:16 +08:00

9 lines
203 B
TypeScript

import type { PluginOption } from 'vite';
import UnoCSS from 'unocss/vite';
export default [
// https://github.com/antfu/unocss
// see uno.config.ts for config
UnoCSS(),
] satisfies PluginOption;