如何从Brunch.io编译的CSS中删除SASS调试?

时间:2014-08-16 04:32:25

标签: sass compass-sass brunch

当我使用Brunch.io将我的SCSS代码编译到CSS时,它会将以下内容添加到CSS中。

@media -sass-debug-info{filename{font-family:file\:[*FILE PATH REMOVED*]/reset\.scss}line{font-family:\000031}}

我尝试在Brunch配置文件中添加一个“安静”标志(如此处所示:https://github.com/brunch/sass-brunch)但这似乎没有什么区别。

如何阻止编译器添加这些行?

2 个答案:

答案 0 :(得分:0)

尝试禁用:debug_info为false。在config.rb中这样:

debug_info = false

或者在早午餐配置文件中,您应该编辑这些行:

config =
   plugins:
     sass:
         debug: 'comments'

答案 1 :(得分:0)

您需要以这种方式在 config.rb 中进行指定(仅靠自己指定debug_info是不够的。)

sass_options = {:debug_info => false}

通过Compass 1.0.3和Sass 3.4.25测试

Useful blog