After reading from http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification :
The bundling framework follows several common conventions such as: Selecting “.min” file for release when “FileX.min.js” and “FileX.js” exist. Selecting the non “.min” version for debug. [..]"
But :
even though my js files are not all minified in the solution, I still receive a minified version in the web browser when BundleTable.EnableOptimizations = true.
My questions is :
Why should I manually minify my JS files when the BundleTable.EnableOptimizations = true option take care of it ?