| what is bundling and minification in mvc
Bundling and minification techniques are mainly used to reduce request load time by reducing number of request to the server. Bundling is the technique where we group files likes css,js files and then request server in single attempt. So in place sending 2 or more files it will send them in one go which will save bandwidth and load application faster.
Minification is the technique where we will remove extra spaces from js files and remove commented lines to lower the size of js files that helps in loading file fasters. | | |