DEV Community

Discussion on: Stop Bundling Scripts for Better Web Performance

Collapse
 
1e4_ profile image
Ian

Bundling was done to keep HTTP requests down amongst other things. However with HTTP2 and 3. Bundling may not always be faster. It can depend on a lot of things.

You may bundle the core of your app. But not some other things

Collapse
 
fleshmecha profile image

There are many elements of my app’s setup that make this the fastest option. I think the most important distinction is that runtime bundling kept them from being cached, so I had to choose cache OR bundling, but other setups don’t have that issue.