我只使用sass(不使用grunt),也使用彻底的grunt。我观察到grunt-sass比单独使用sass慢得多。可能的原因是什么?我通过下面的代码禁用了grunt-sass中的sourceMap:
compile: {
options: {
style: 'nested',
sourcemap: 'none',
}
}
Grunt-contrib-sass最初是基于Ruby的,比基于libsass的grunt-sass慢得多
小心选择libsass版本,当通过gulp/grunt插件使用时,它应该不会变慢。