1.

What are bundling and minification in ASP.NET MVC?

Answer»

Bundling and minification are two techniques used for your WEB application in the ASP.NET MVC framework for improving the performance of the PAGE load. Bundling will combine several files into a single file. Minification will perform different TYPES of code optimizations to CSS and scripts, which will result in smaller payloads. With the help of bundling and minification, we can improve the performance of load time by reducing the requested ASSETS(like JavaScript and CSS files) size and by reducing the number of requests to the server.



Discussion

No Comment Found