Created
October 14, 2014 07:47
-
-
Save gistfrojd/d0d08581ee08a891e0ea to your computer and use it in GitHub Desktop.
.NET MVC Bundles when 404 not found
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- To get bundles to work when not debugging (as in minified) you might need this in web.config --> | |
<!-- It's only the bundlemodule you need, the other is just to show where it should be placed --> | |
<system.webServer> | |
<modules runAllManagedModulesForAllRequests="true"> | |
<add name="BundleModule" type="System.Web.Optimization.BundleModule"/> | |
</modules> | |
</system.webServer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment