mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
18 lines
344 B
TypeScript
18 lines
344 B
TypeScript
import vue from './vue';
|
|
import compress from './compress';
|
|
|
|
/**
|
|
* @description: 设置vite插件配置
|
|
* @param {*} viteEnv - 环境变量配置
|
|
* @return {*}
|
|
*/
|
|
export function setVitePlugins(viteEnv) {
|
|
const plugins = [...vue];
|
|
|
|
if (viteEnv.VITE_COMPRESS_OPEN === 'Y') {
|
|
plugins.push(compress(viteEnv));
|
|
}
|
|
|
|
return plugins;
|
|
}
|