|
|
|
|
@ -20,6 +20,12 @@ export default ({command, mode}: ConfigEnv): UserConfig => {
|
|
|
|
|
} else {
|
|
|
|
|
env = loadEnv(mode, root)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 打包时需要移除的语句(drop_console / drop_debugger)
|
|
|
|
|
const esbuildDrop: ('console' | 'debugger')[] = []
|
|
|
|
|
if (env.VITE_DROP_CONSOLE === 'true') esbuildDrop.push('console')
|
|
|
|
|
if (env.VITE_DROP_DEBUGGER === 'true') esbuildDrop.push('debugger')
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
base: env.VITE_BASE_PATH,
|
|
|
|
|
root: root,
|
|
|
|
|
@ -39,7 +45,7 @@ export default ({command, mode}: ConfigEnv): UserConfig => {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
// 项目使用的vite插件。 单独提取到build/vite/plugin中管理
|
|
|
|
|
plugins: createVitePlugins(),
|
|
|
|
|
plugins: createVitePlugins(isBuild),
|
|
|
|
|
css: {
|
|
|
|
|
preprocessorOptions: {
|
|
|
|
|
scss: {
|
|
|
|
|
@ -62,17 +68,15 @@ export default ({command, mode}: ConfigEnv): UserConfig => {
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
// 使用 esbuild 压缩,速度远快于 terser;drop 用于移除 console / debugger
|
|
|
|
|
esbuild: {
|
|
|
|
|
drop: esbuildDrop
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
minify: 'terser',
|
|
|
|
|
minify: 'esbuild',
|
|
|
|
|
outDir: env.VITE_OUT_DIR || 'dist',
|
|
|
|
|
sourcemap: env.VITE_SOURCEMAP === 'true' ? 'inline' : false,
|
|
|
|
|
// brotliSize: false,
|
|
|
|
|
terserOptions: {
|
|
|
|
|
compress: {
|
|
|
|
|
drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
|
|
|
|
|
drop_console: env.VITE_DROP_CONSOLE === 'true'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
manualChunks: {
|
|
|
|
|
|