2016-06-08 42 views

回答

1

只需要花費1個多小時將我的頭髮拉出來。我正在致力於Laravel項目並通過npm導入bootstrap-sass。目錄結構:

[project root] 
|-node_modules 
| |-bootstrap-sass 
| |-assets 
|  |-stylesheets 
|  |-_bootstrap.scss 
|-resources 
    |-sass 
    |-assets 
     |-app.scss 

的問題是,它無法找到node_modules目錄。在resources/assets/sass/app.scss,我改變了這一點:

@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";

...這樣的:

@import "../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap";

它的工作原理,但我覺得我已經錯過了一些東西很明顯,所以希望能看到更好的解決方案。