user2206329
user2206329

Reputation: 2842

how to stop minification on release build?

I am creating an MVC4 application. I am using bundling, the debug version works great, but when I publish the application I am getting errors.

Does anyone know how to turn minification off so that it just includes the full version of the js files?

Thanks

Upvotes: 0

Views: 37

Answers (1)

Juan Rada
Juan Rada

Reputation: 3786

EnableOptimizations = false will turn off both bundling and minification.

Upvotes: 2

Related Questions