Breakskater
Breakskater

Reputation: 435

Bundle file location in ASP.NET MVC

Where are the generated bundle files placed?

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

Upvotes: 17

Views: 6324

Answers (2)

CodeCaster
CodeCaster

Reputation: 151594

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

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

Upvotes: 18

Code Uniquely
Code Uniquely

Reputation: 6373

They are bundled up dynamically (in Memory I assume) and served to the client being sent down to the client as a single item (you should the single JS file see it if you use fiddler of F12 => Network).

Upvotes: 6

Related Questions