StyleBundle を使用して既存のプロジェクトにブートストラップ スタイルを追加しようとしています。同じバンドル内の他のスタイルは機能しますが、ブートストラップ スタイルは機能しません。これが私のバンドルです:
bundles.Add(new StyleBundle("~/bundles/css").Include(
"~/Content/boostrap/boostrap.css",
"~/Content/boostrap/boostrap-responsive.css",
"~/Content/boostrap/boostrap-theme.css",
"~/Content/font-awesome.css",
"~/Content/Site.css"));
@Styles.Render("~/bundles/css")
@Scripts.Render("~/bundles/modernizr")
Google Chrome > F12 > Network > Stylesheets タブで、ブートストラップ スタイルは表示されませんが、font-awesome.css および site.css スタイルは表示されます。
ただし、スタイルを index.html ページ ヘッダーにドラッグ アンド ドロップすると、それらが表示されます。
<link href="~/Content/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="~/Content/bootstrap/bootstrap-responsive.css" rel="stylesheet" />
<link href="~/Content/bootstrap/bootstrap-theme.css" rel="stylesheet" />
ブラウザにもエラーは表示されません。見逃したブートストラップに特別なものはありますか?