拡張子が .min.js のファイルが含まれていない mvc4 バンドラーに問題があります。Scripts フォルダーには、bootstrap.js、bootstrap.min.js の 2 つのファイルがあります。
私の BundleConfig クラスでは、宣言します
#if !DEBUG
BundleTable.EnableOptimizations = true;
#endif
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include("~/Scripts/bootstrap.js"));
デバッグで実行すると、期待どおりにレンダリングされます。
<script src="/Scripts/bootstrap.js"></script>
Release で実行すると、次のようにレンダリングされます。
<script src="/bundles/bootstrap?v=57XuMf8ytOYgVErEDhgFDRtQ5jlC48bryka4m2DVq_M1"></script>
次のようにレンダリングされないのはなぜですか:
<script src="/Scripts/bootstrap.min.js"></script>