Problem: I am using gulp -sass and would like to define load_path, so I don't need to have really long @import rules for dependencies between towers, for example.
@import "normalize"
instead
@import "../../../../../bower_components/bootstrap-sass/assets/stylesheets/bootstrap/normalize"
What is the best way to achieve this when using gulp-sass, which uses the LibSass mechanism to process sass files?
css import sass gulp-sass
Timidfriendly
source share