Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bundles Not Loading in ASP.NET MVC 4

Tags:

asp.net-mvc

I added the bundle in BundleConfig.cs as shown below:

 bundles.Add(new ScriptBundle("~/bundles/angular").Include("~/Scripts/angular.min*"));

In the _Layout.cshtml I have the following:

<body>
    @RenderBody()

    @Scripts.Render("~/bundles/jquery")

    @Scripts.Render("~/bundles/angular")

    @RenderSection("scripts", required: false)
</body>
</html>

In the network traffic it does not show the angular file.

like image 925
john doe Avatar asked Aug 05 '13 16:08

john doe


1 Answers

Bundling in ASP.NET MVC is quite clever in that it understands *.min and when to use or no to use it. So if you do this in your bundle:

bundles.Add(new ScriptBundle("~/bundles/angular").Include("~/Scripts/angular.js"));

In debug-mode, it will send a request for "/scripts/angular.js" and in release-mode it will send a request to "/scripts/angular.min.js"

In order to benefit from this, you should put both the original and the minified file in your scripts folder. That way, when you're debugging you have full access to the uncompressed source and in your production environment, the optimized file will be loaded

like image 187
Kenneth Avatar answered Oct 02 '22 02:10

Kenneth