1

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?

Jasen
  • 14,030
  • 3
  • 51
  • 68
g.pickardou
  • 32,346
  • 36
  • 123
  • 268

1 Answers1

1

Add to your bundle config

BundleTable.EnableOptimizations = false;
Jasen
  • 14,030
  • 3
  • 51
  • 68
  • Thx. (Why is this not in a conditional #if DEBUG in project template that's a puzzler. Zillions of people rewrites this zillon times... ) – g.pickardou Sep 18 '14 at 00:30