以下是捆绑的mu代码段:
bundles.Add(new StyleBundle("~/bundles/scent-css").Include(
"~/css/bootstrap.css",
"~/css/custom.css"));
在我的布局中我使用的是addind css文件: 的 @ Styles.Render( “〜/捆绑/香味-CSS”)
我的机器上的一切正常,但是当我将所有内容移动到本地Web服务器(IIS)时,css文件没有被加载。如果我在生产环境中查看页面源,我可以看到以下行:
<link href="/bundles/scent-css?v=v4ohyWx_1204EYiKV1yo4Pyg03bErnO8heg7POAEXP01" rel="stylesheet"/>
我用谷歌搜索了这个并尝试了几乎所有人都建议到目前为止没有解决方案。
我试过了: 在BundleConfig中添加 bundles.IgnoreList.Clear(); -Edit webconfig添加:
<modules runAllManagedModulesForAllRequests="true">
<remove name="BundleModule" />
<add name="BundleModule" type="System.Web.Optimization.BundleModule" />
知道我在这里做错了什么,为什么没有加载css文件。
由于