Search code examples
asp.net-mvc-4bundling-and-minificationasp.net-optimization

Bundle file location in ASP.NET MVC


Where are the generated bundle files placed?

 bundles.Add(new ScriptBundle("~/bundles/jqueryall")
   .IncludeDirectory("~/scripts/", "*.js", true)

Solution

  • There are no files, bundles are stored in-memory.

    Can you please explain why you expect the bundles to be files? :-)