perf(@vant/cli): using terser to minify package (#9640)

This commit is contained in:
neverland 2021-10-08 15:32:44 +08:00 committed by GitHub
parent 61cce4c16e
commit 78bcd368ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,8 @@ export function getViteConfigForPackage(minify: boolean): InlineConfig {
return minify ? `${name}${suffix}.min.js` : `${name}${suffix}.js`;
},
},
minify,
// terser has better compression than esbuild
minify: minify ? 'terser' : false,
rollupOptions: {
external: ['vue'],
output: {