문제

Where are the generated bundle files placed?

 bundles.Add(new ScriptBundle("~/bundles/jqueryall")
   .IncludeDirectory("~/scripts/", "*.js", true)
도움이 되었습니까?

해결책

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

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

다른 팁

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).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top