Combining JS / CSS Can Make Your Site Load Slower

2020-08-23T11:18:14-06:00March 23rd, 2020|Case Studies, Optimization|

Updated August 23, 2020

Combining CSS and JS files has historically been a popular method of improving a website’s performance.

By concatenating all of your files into one asset, you minimize the amount of calls that are being made to retrieve these assets from the web server.

In 2020 however, is combining files to reduce request calls […]