Bundle file location in ASP.NET MVC

前端 未结 2 1922
悲&欢浪女
悲&欢浪女 2020-12-31 04:16

Where are the generated bundle files placed?

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


        
2条回答
  •  情深已故
    2020-12-31 05:08

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

提交回复
热议问题