我正在使用 Yeoman RC1.1 生成我的项目并加载了grunt-contrib-compass以在我的项目中使用 Scss。
当我执行grunt build
时,生成的 CSS 被缩小但充满了调试注释。它看起来像这样:
@media -sass-debug-info{filename{font-family:file\:\/\/\/\/Users\/myname\/Sites\/project\/app\/components\/sass-bootstrap\/lib\/_reset\.scss}line{font-family...
整个事情都被大量-sass-debug-info
代码污染了。
在 Gruntfile.js 中,我设置了以下选项(以及许多其他选项)来关闭 /dist/ css 文件的调试注释:
grunt.initConfig({
compass: {
dist: {
options: {
debugInfo: false
}
}
}
}
我是否不正确地假设debugInfo
通过将其设置为false
应该解决问题来关闭它?