Bundling 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.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Bundling 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.