Wednesday 13 May 2015

Bundling and minification in MVC 4:-


Both bundling and minification framework will reduce the number of hits internally made by HTTP request for a web page.
Bundling features combine the multiple files into a single file. It will improve the performance of the web request as this will have less number of files which means less HTTP requests.
Minification will just do the code optimization to the scripts and css files by removing the unnecessary white space, comments and shortening variable names to one character.

No comments:

Post a Comment