-
如: |
Beta Was this translation helpful? Give feedback.
Answered by
fz6m
Oct 31, 2023
Replies: 1 comment 2 replies
-
在 umi 4 中所有路由都是默认拆包,这样可以减少加载 js 体积,如果不希望懒加载,要换掉只能全部换掉: routeLoader: { moduleType: 'cjs' } 但这样会生成非常大的单文件产物,因为所有路由都没有分包汇总在一起了。 目前做不到手动配置哪些路由拆包哪些不拆包,只能全拆或全不拆。 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Lemonreds
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
在 umi 4 中所有路由都是默认拆包,这样可以减少加载 js 体积,如果不希望懒加载,要换掉只能全部换掉:
但这样会生成非常大的单文件产物,因为所有路由都没有分包汇总在一起了。
目前做不到手动配置哪些路由拆包哪些不拆包,只能全拆或全不拆。