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?
Asked
Active
Viewed 249 times
1

Tim
- 159
- 1
- 8
1 Answers
0
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 tostylesheets
cssPath
is the full path to that directory. By default it is<basePath>
/<cssDir>
.
For most uses, simply setting the cssDir
should be sufficient.