Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bundle file location in ASP.NET MVC

Where are the generated bundle files placed?

 bundles.Add(new ScriptBundle("~/bundles/jqueryall")
   .IncludeDirectory("~/scripts/", "*.js", true)
like image 209
Breakskater Avatar asked Sep 25 '13 15:09

Breakskater


1 Answers

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

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

like image 124
CodeCaster Avatar answered Sep 22 '22 13:09

CodeCaster