css – gulp-sass解决load_path支持问题?

前端之家收集整理的这篇文章主要介绍了css – gulp-sass解决load_path支持问题?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
问题:
我正在使用gulp-sass并且想要定义一个load_path,这样我就不必拥有很长的@import规则,例如bower bower依赖关系,例如
@import "normalize"

代替

@import "../../../../../bower_components/bootstrap-sass/assets/stylesheets/bootstrap/normalize"

当使用gulp-sass使用LibSass引擎处理sass文件时,我实现这一目标的最佳方法是什么?

解决方法

在与自己挣扎之后,我找到了gulp-sass中的一个选项:

sass({includePaths: [‘./bower_components/bootstrap-sass/assets/stylesheets’]})

例:

var gulp = require('gulp'),sass = require('gulp-sass')
    notify = require("gulp-notify");

var config = {
    sassPath: './resources/sass',// store the sass files I create
    bowerDir: './bower_components'
}

gulp.task('css',function() {
  return gulp.src(config.sassPath + '/style.scss')
    .pipe(sass({
        outputStyle: 'compressed',includePaths: [
            './resources/sass',config.bowerDir + '/bootstrap-sass/assets/stylesheets',config.bowerDir + '/font-awesome/scss']
        })
       .on("error",notify.onError(function (error) {
            return "Error: " + error.message;
        })))
    .pipe(gulp.dest('./public/css'));
});
原文链接:https://www.f2er.com/css/215508.html

猜你在找的CSS相关文章