0
我正在使用laravel 5.2和elixir。 當我用引導材料設計與引導,青菜我有一個錯誤,一飲而盡任務返回此:Laravel Elixir sass依賴路徑
gulp-notify: [Laravel Elixir] Sass Compilation Failed: node_modules/bootstrap-material-design/sass/_import-bs-sass.scss
Error: File to import not found or unreadable: bootstrap/variables
Parent style sheet: /workspace/node_modules/bootstrap-material-design/sass/_import-bs-sass.scss
on line 1 of node_modules/bootstrap-material-design/sass/_import-bs-sass.scss
>> @import "bootstrap/variables";
當我替換此行,它的工作原理。
@import "../../bootstrap-material-design/sass/variables";
在我gulpfile我有:
elixir(function(mix) {
mix
.browserSync({
proxy : 'http'
})
.sass('app.scss')
.browserify('app.js')
.version(["public/css/app.css","public/js/app.js"]);
});
在我app.scss我有:
@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
@import "node_modules/bootstrap-material-design/sass/bootstrap-material-design";
我在做什麼錯?