DEV Community

Discussion on: Stop Bundling Scripts for Better Web Performance

Collapse
 
bgauryy profile image
bgauryy

Not bundling resources is not a good practice, since it causes latency for users with slow network connection, especially mobile users.

Collapse
 
fleshmecha profile image

This post does not apply to every situation. If you are tree shaking and code splitting, bundling is faster. If not, this post is helpful.