Skip to content
Advertisement

webpack production build bundle.js file size is 10mb

I’m working on this react app and when I build the projects the bundle.js file is 10mb so after the deployment it takes time to load the content.

Here’s the code: https://github.com/sef-global/scholarx-frontend

Here’s my webpack config file:

JavaScript

Advertisement

Answer

I assume for production build you using your “build” command from packages.json which states:

JavaScript

That will trigger webpack “building” of course, but in your webpack config the mode is set to development – so it will build in development mode.

What you want to do is this:

JavaScript

--mode argument will override what you have in webpack.config.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement