gpt4 book ai didi

asp.net-mvc - 不要缩小ASP .NET MVC 4 BundleConfig中的某些文件

转载 作者:行者123 更新时间:2023-12-03 12:40:00 28 4
gpt4 key购买 nike

我不想缩小我在ASP .NET MVC 4解决方案中使用的所有文件。因此,例如,我的BundleConfig.cs中包含以下内容:

bundles.Add(new StyleBundle("~/CSS/bootstrap").Include(
"~/Content/Bootstrap/body.css",
"~/Content/Bootstrap/bootstrap-responsive.css",
"~/Content/Bootstrap/bootstrap-mvc-validation.css",
"~/Content/Bootstrap/bootstrap-theme.css",
"~/Content/Bootstrap/bootstrap.css"
));

...

为了使它最小化,我当然使用:
BundleTable.EnableOptimizations = true;

因此效果很好。

但是现在,我如何缩小除一个 bundle 包之外的所有文件?我有一个 bundle 包有问题,该 bundle 包删除了一些CSS类,并且不想缩小这个类。

任何帮助将不胜感激。

最佳答案

使用Transforms.Clear()跳过最小化但将文件 bundle 在一起

//declare bundle
var bundle = new ScriptBundle("~/javascripts/ckEditor")
.Include("~/Scripts/ckeditor/ckeditor.js")
.Include("~/Scripts/ckeditor/config.js");

//skip transformation. Result is that files are only bundled, but not minified.
bundle.Transforms.Clear();

bundles.Add(bundle);

您还必须从目录中删除.min.js文件,以防止替换

关于asp.net-mvc - 不要缩小ASP .NET MVC 4 BundleConfig中的某些文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24212565/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com