如何在Visual Studio .NET 4.5中将多个Javascript CDN文件合并为一个大型捆绑包?
我在网上看过以下内容,但这只显示了1个CDN,因为捆绑1个项目没用,所以也没有任何好处......
bundles.UseCdn = true; //enable CDN support
//add link to jquery on the CDN
var jqueryCdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js";
bundles.Add(new ScriptBundle("~/bundles/jquery", jqueryCdnPath).Include(
"~/Scripts/jquery-{version}.js"));
如果我有多个CDN文件,我想将它们粉碎成1个http请求,那么可以将它们全部组合在一起吗?