Hi people,
I want to ask you is there any way for reducing the production bundle size of Atlaskit? How do you cope with this since as you can see in the image attached the node_modules folder is around 2 MB ?
Kind Regards,
Philip Kasapov
Hi people,
I want to ask you is there any way for reducing the production bundle size of Atlaskit? How do you cope with this since as you can see in the image attached the node_modules folder is around 2 MB ?
Kind Regards,
Philip Kasapov
Extremely aggressive tree shaking, dynamic module loading & chunk splitting
Hi @fkasapov, if you are using yarn you could try those tools to optimize the node_modules and webpack bundle:
You can also double-check if you need all those dependencies. If you are not sure why the dependency is in the bundle you can find out using npm or yarn:
Thanks,
Maciej