我有一个 mvc4 捆绑程序不包括扩展名为 .min.js 的文件的问题。在我的 Scripts 文件夹中,我有两个文件:bootstrap.js、bootstrap.min.js
在我的 BundleConfig 类中,我声明
#if !DEBUG
BundleTable.EnableOptimizations = true;
#endif
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include("~/Scripts/bootstrap.js"));
在 Debug 中运行时,它按预期呈现:
<script src="/Scripts/bootstrap.js"></script>
在 Release 中运行时,它呈现为:
<script src="/bundles/bootstrap?v=57XuMf8ytOYgVErEDhgFDRtQ5jlC48bryka4m2DVq_M1"></script>
为什么它不呈现为:
<script src="/Scripts/bootstrap.min.js"></script>