当我在 css 文件中进行更改时,运行应用程序时不会出现结果(我尝试清理/重建解决方案但同样的问题)。
捆绑配置:
...
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/Index.css",
"~/Content/Layout.css",
"~/Content/Login.css"
));
索引.cshtml:
@{
ViewBag.Title = "Index";
Layout = "../Shared/_Layout.cshtml";
}
<head>
<link href="@Url.Content("~/Content/Index.css")" rel="stylesheet" type="text/css" />
</head>
当我使用 chrome 工具检查时:
在此图像中,当我更改代码时,CSS 不会更新。
开心每一天1111
相关分类