Commit 53cef8b4 by YunaiV

【代码优化】echarts 独立 chunk 打包

parent fb08357e
...@@ -71,7 +71,14 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { ...@@ -71,7 +71,14 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
drop_debugger: env.VITE_DROP_DEBUGGER === 'true', drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
drop_console: env.VITE_DROP_CONSOLE === 'true' drop_console: env.VITE_DROP_CONSOLE === 'true'
} }
} },
rollupOptions: {
output: {
manualChunks: {
echarts: ['echarts'] // 将 echarts 单独打包,参考 https://gitee.com/yudaocode/yudao-ui-admin-vue3/issues/IAB1SX 讨论
}
},
},
}, },
optimizeDeps: { include, exclude } optimizeDeps: { include, exclude }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment