0

I have used sass alone(not using grunt) and thorough grunt too. What I observe is grunt-sass is lot slower than using sass alone. What could be the possible reasons for this? I have disabled the sourceMap in grunt-sass by following code:

compile: {
           options: {
            style: 'nested',
            sourcemap: 'none',
           }
}
PageSource
  • 301
  • 3
  • 11

1 Answers1

0

Grunt-contrib-sass is originally based on Ruby and is much slower than grunt-sass which is based on libsass

Be carefull to choose the libsass version, which shouldn't be slower when used through a gulp/grunt plugin.

Jscti
  • 14,096
  • 4
  • 62
  • 87