0

看起来这是不可能的,因为只有在所有文件都被合并和缩小后才会应用 LessTransform。

public class LessTransform : IBundleTransform
{
    public void Process(BundleContext context, BundleResponse response)
    {
        response.Content = LessWeb.Parse(response.Content, (DotlessConfiguration) ConfigurationManager.GetSection("dotless"));
        response.ContentType = "text/css";
    }
}

有没有办法在捆绑时以某种方式预处理较少的文件?

4

1 回答 1

1

我最近也有同样的需求,并写了一篇关于我最终想出的解决方案的博客文章。 这里

这可以通过nuget 包/一些 web.config 更改(在包安装后详细说明,因此此处不包括在内)/捆绑配置中的新转换器来相对容易地完成。

于 2013-01-19T21:22:09.677 回答