What is Bundling and Minification in MVC?
1331
15-May-2017
Manish Kumar
15-May-2017Bundling and minification are two new techniques in .net MVC. It is introduced us to improve request load time. By the use of Bundling and minification we improves our content loading time by reducing the number of requests to the server and reducing the size of requested assets (such as CSS and JavaScript).
Bundling: It is use to combine multiple JavaScript (.js) files or multiple cascading style sheet (.css) files in a single file so that they can be downloaded as a unit we can not make individual HTTP requests.
Minification: Minnification performs different type of code optimization in js of css file By removing unnecessary white space and comments.