if im using lazy loading module my angular application main.bundle.js file size is decreased while build

人走茶凉 提交于 2019-12-11 15:16:23

问题


How can i reduce my vendor.bundle.js and main.bundle.js file size while build my application using

ng build --aot false --prod

if im using lazy loading module my angular application main.bundle.js file size is decreased while build.


回答1:


ng build by itself does not have any optimizations. If you ng build --help you can see all the flags you can pass to further optimize your code and reduce the output sizes.

Try ng build -prod -aot -vc -cc -dop --buildOptimizer and see what your numbers are. This will enable production mode, use AOT, use a vendor chunk for third party libs, pull all common code out into a common chunk, make sure the output path is clean and lastly use the @angular-devkit/build-optimizer for further optimizations.

If that is still large, then do a run through in your application for third-party libraries that you are using. (1) Are you importing the entire RxJS library? (2) Moment with all localizations? etc..



来源:https://stackoverflow.com/questions/51944170/if-im-using-lazy-loading-module-my-angular-application-main-bundle-js-file-size

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!