---
title: "What is Bundling and Minification in MVC?"  
description: "What is Bundling and Minification in MVC?"  
author: "Manish Kumar"  
published: 2017-05-15  
updated: 2020-09-14  
canonical: https://www.mindstick.com/interview/23245/what-is-bundling-and-minification-in-mvc  
category: "c#"  
tags: ["mvc4"]  
reading_time: 2 minutes  

---

# What is Bundling and Minification in MVC?

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.

## Answers

### Answer by Manish Kumar

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.


---

Original Source: https://www.mindstick.com/interview/23245/what-is-bundling-and-minification-in-mvc

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
