0

因此,对于脚本/样式包,我有:

@Scripts.Render("~/bundles/jquery")    
@Styles.Render("~/Content/css")

捆绑配置非常基本:

bundles.UseCdn = true;

bundles.Add(new StyleBundle("~/Content/css").Include(
    "~/Content/css/icomoon.css",
    "~/Content/bootstrap.css",
    "~/Content/bootstrap-theme.css",
    "~/Content/toastr.css",
    "~/Content/custom.css"));

bundles.Add(new ScriptBundle("~/bundles/jquery", "//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"));

本地捆绑包有效,但 CDN 捆绑包不起作用。调试与发布模式似乎没有区别:在任何一种情况下,jquery 包都只会在输出中产生一个空行。

我怎样才能解决这个问题?

4

1 回答 1

0

无论您的调试模式如何,使用BundleTable.EnableOptimizations = true;它都会进行捆绑和缩小。

于 2014-11-07T21:54:55.727 回答