0

那么当我编译我的 .less 文件时,这些注释可以以某种方式跳过/删除吗?因为现在看起来很可笑。所有的评论都混搭在 .css 文件的顶部。

我使用 Drupal 7、Bootstrap 3.0.0、用于 D7 的 LESS 预处理器模块和 lessphp 库。

在lessc.inc.php中,我发现只有一行带有setPreserveComments:

public function setPreserveComments($preserve) {
    $this->preserveComments = $preserve;
}

它与http://leafo.net/lessphp/docs/#preserving_comments上的文档不匹配

4

1 回答 1

1

注释应该被自动删除,但是,如果它们出现,也许编译器设置setPreserveComments为 true,找到它并注释掉。

于 2013-11-11T11:40:56.703 回答