Skip to content

Instantly share code, notes, and snippets.

@grayghostvisuals
Created January 23, 2014 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grayghostvisuals/8584790 to your computer and use it in GitHub Desktop.
Save grayghostvisuals/8584790 to your computer and use it in GitHub Desktop.
Example setup for the grunt-contrib-compass plugin and settings.
// https://github.com/gruntjs/grunt-contrib-compass
compass: {
dist: {
options: {
httpPath: '/',
httpImagesPath: 'httpPath + "/" + imagesDir',
cssDir: 'app/webroot/css',
sassDir: 'app/webroot/scss',
javascriptsDir: 'app/webroot/js',
imagesDir: 'app/webroot/img',
fontsDir: 'app/webroot/fonts',
noLineComments: true,
relativeAssets: true,
outputStyle: 'expanded'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment