Bundler renders styles merged and minified in Debug mode

70 Views Asked by At

Using VS 2013 Update 3 I am creating a new ASP MVC 5 app.

Changing nothing, running this web app with F5, and monitoring the http trafic with fiddler I am seeing that one merged and minified CSS travelling. Debug mode if true in web.config.

I would like the distinct not minified CSS in my browsers developer tools.

What am I missing?

1

There are 1 best solutions below

1
Jasen On BEST ANSWER

Add to your bundle config

BundleTable.EnableOptimizations = false;