DEV Community

Discussion on: How we reduced our initial JS/CSS size by 67%

Collapse
 
ajayposhak profile image
Ajay Poshak • Edited

I think that the other way to stop changing your main bundle whenever some other bundle changes is to create a runtime chunk separately. This chunk will contain all runtime info that was inside main bundle till yet. I have also written about some techniques to fine-tune your bundle size using webpack medium.com/@poshakajay/heres-how-i...