Я получаю сообщение об ошибке при попытке импортировать bootstrap дизайн материала -
Error in plugin "sass"
Message:
node_modules/bootstrap-material-design/scss/_variables.scss
Error: File to import not found or unreadable: ~bootstrap/scss/functions.
on line 56 of node_modules/bootstrap-material-design/scss/_variables.scss
from line 2 of node_modules/bootstrap-material-design/scss/_core.scss
from line 3 of node_modules/bootstrap-material-design/scss/bootstrap-material-design.scss
from line 2 of assets/sass/style.scss
>> @import "~bootstrap/scss/functions"; // from bootstrap node_module
Я думал, что это потому, что я не включил путь node_modules
в мою функцию gulp sass
, но потом, когда я добавил это:
gulp.task('styles', () => {
return gulp.src('assets/sass/**/*.scss')
.pipe(sass({
includePaths: ['node_modules']
}).on('error', sass.logError))
.pipe(gulp.dest('./assets/css/'));
});
Это все еще имеет ту же ошибку. Путь node_modules
находится, так как я могу сделать
@import "bootstrap-material-design/scss/bootstrap-material-design";