看起来这是不可能的,因为只有在所有文件都被合并和缩小后才会应用 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";
}
}
有没有办法在捆绑时以某种方式预处理较少的文件?