In the optional configuration options for the Compass Grunt plugin (https://github.com/gruntjs/grunt-contrib-compass), what is the difference between cssDir
and cssPath
? Or do they both control the same thing?
Nevermind, seems to be pretty well explained in this answer – here's the jist:
cssDir
is strictly the name of the directory where your css files will be created. Defaults to stylesheets
cssPath
is the full path to that directory. By default it is <basePath>
/<cssDir>
.For most uses, simply setting the cssDir
should be sufficient.