|
@@ -62,50 +62,24 @@ export default ({command, mode}: ConfigEnv): UserConfig => {
|
|
|
]
|
|
|
},
|
|
|
build: {
|
|
|
- minify: 'esbuild',
|
|
|
+ minify: 'terser',
|
|
|
outDir: env.VITE_OUT_DIR || 'dist',
|
|
|
sourcemap: env.VITE_SOURCEMAP === 'true' ? 'inline' : false,
|
|
|
- chunkSizeWarningLimit: 2000,
|
|
|
- reportCompressedSize: false,
|
|
|
- cssCodeSplit: true,
|
|
|
- emptyOutDir: true,
|
|
|
- target: 'esnext',
|
|
|
- assetsInlineLimit: 4096,
|
|
|
+ // brotliSize: false,
|
|
|
+ terserOptions: {
|
|
|
+ compress: {
|
|
|
+ drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
|
|
|
+ drop_console: env.VITE_DROP_CONSOLE === 'true'
|
|
|
+ }
|
|
|
+ },
|
|
|
rollupOptions: {
|
|
|
output: {
|
|
|
manualChunks: {
|
|
|
- 'element-plus': ['element-plus'],
|
|
|
- 'echarts': ['echarts'],
|
|
|
- 'vue': ['vue', 'vue-router', 'pinia', '@vueuse/core'],
|
|
|
- 'libs': ['axios', 'dayjs', '@wangeditor/editor'],
|
|
|
- },
|
|
|
- chunkFileNames: 'assets/js/[name]-[hash].js',
|
|
|
- entryFileNames: 'assets/js/[name]-[hash].js',
|
|
|
- assetFileNames: 'assets/[ext]/[name]-[hash].[ext]'
|
|
|
+ echarts: ['echarts'] // 将 echarts 单独打包,参考 https://gitee.com/yudaocode/yudao-ui-admin-vue3/issues/IAB1SX 讨论
|
|
|
+ }
|
|
|
},
|
|
|
- maxParallelFileOps: 20,
|
|
|
- }
|
|
|
- },
|
|
|
- optimizeDeps: {
|
|
|
- include,
|
|
|
- exclude,
|
|
|
- esbuildOptions: {
|
|
|
- target: 'esnext',
|
|
|
- minify: true,
|
|
|
- minifyIdentifiers: true,
|
|
|
- minifySyntax: true,
|
|
|
- minifyWhitespace: true,
|
|
|
- treeShaking: true,
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
- esbuild: {
|
|
|
- pure: env.VITE_DROP_CONSOLE === 'true' ? ['console.log', 'debugger'] : [],
|
|
|
- target: 'esnext',
|
|
|
- treeShaking: true,
|
|
|
- minifyIdentifiers: true,
|
|
|
- minifySyntax: true,
|
|
|
- minifyWhitespace: true,
|
|
|
- legalComments: 'none'
|
|
|
- }
|
|
|
+ optimizeDeps: {include, exclude}
|
|
|
}
|
|
|
}
|