mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
import vue from './vue';
|
|
import compress from './compress';
|
|
import html from './html';
|
|
import unocss from './unocss';
|
|
|
|
/**
|
|
* @description: 设置vite插件配置
|
|
* @param {*} env - 环境变量配置
|
|
* @return {*}
|
|
*/
|
|
export function setVitePlugins(env) {
|
|
const plugins = [...vue, html(env), unocss];
|
|
|
|
if (env.VITE_COMPRESS_OPEN === 'Y') {
|
|
plugins.push(compress(env));
|
|
}
|
|
|
|
return plugins;
|
|
}
|