我的 BundleConfig.cs 文件中有以下内容
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/reset.css",
"~/Content/site.css"));
在我的 _Layout.cshtml 文件中,我设置了这样的样式
@Styles.Render("~/Content/css")
当我在 web.config 文件中将 debug 设置为 false 时,我在 html 源代码中得到了这个
<link rel="stylesheet" href="/Content/css?v=o98MVeaPnTOPDtb6WAqw14YyALxEnOYDmGqwfyBAiq01">
The resource from this url is not text: http://localhost:1135/Content/css?v=o98MVeaPnTOPDtb6WAqw14YyALxEnOYDmGqwfyBAiq01
</link>
并且没有任何样式被应用。我在这里想念什么?