gulp-compass icon indicating copy to clipboard operation
gulp-compass copied to clipboard

How do you set image path without config.rb?

Open slavafomin opened this issue 10 years ago • 1 comments

Hello!

Thank you for this great module!

However, how do you set image path without config.rb? I want to configure images_path and http_images_path in order to have correct image path in my output CSS files.

slavafomin avatar Dec 18 '15 16:12 slavafomin

You can pass it within your config; for example

.pipe(compass({
    css: './app/styles/',
    image: './app/images',
    sass: './app/styles'
}))

edwardwilson avatar Jan 06 '16 17:01 edwardwilson