I\'m using Gulp to compile my sass into css. A simple task compiles the style.scss file in the _/sass directory and saves the output into the root of t
style.scss
_/sass
Keep your imports as is, just pass the includePaths option in your gulp sass module as an argument:
includePaths
gulp.src('./_/sass/style.scss') .pipe(sass({ includePaths : ['_/sass/'] })) .pipe(gulp.dest('./'));
...should do it for you.
As per https://github.com/dlmanning/gulp-sass/issues/1