mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
22 lines
480 B
TypeScript
22 lines
480 B
TypeScript
import { defineConfig } from 'vite-plugin-windicss';
|
|
|
|
// https://windicss.org/posts/attributify.html
|
|
export default defineConfig({
|
|
attributify: {
|
|
// prefix: ''
|
|
},
|
|
preflight: false,
|
|
prefixer: false,
|
|
extract: {
|
|
// 忽略部分文件夹
|
|
exclude: ['node_modules', '.git', 'dist', '.idea', '.vscode'],
|
|
},
|
|
corePlugins: {
|
|
// 禁用掉在小程序环境中不可能用到的 plugins
|
|
container: false,
|
|
},
|
|
alias: {},
|
|
plugins: [],
|
|
variants: {},
|
|
});
|