2017-07-02 136 views
1

我得到以下錯誤:Angular4 /打字稿/自舉 - 不能編譯

ERROR in multi ./node-modules/bootstrap/dist/css/bootstrap.min.css ./src/styles.css Module not found: Error: Can't resolve

Module not found: Error: Can't resolve '/Users/hansdeschinkel/VSCode/Resto/node-modules/bootstrap/dist/css/bootstrap.css' in '/Users/hansdeschinkel/VSCode/Resto/node_modules/@angular/cli/models/webpack-configs'

"styles": [ 
    "../node-modules/bootstrap/dist/css/bootstrap.min.css", 
    "styles.css" 
    ], 

我在node_modules保存引導3.3.7。 我也把它添加到我的angular/cli.json文件夾: 我使用VSCode

+0

你可以把angular-cli.json代碼放在​​這裏嗎?問題是樣式需要一個與index.html相關的路徑 – Gary

+0

您確定引導程序包在'node_modules'文件夾中 – Aravind

回答

1

如果您styels.css在src文件夾並bootstrap.min.css在node_modules文件夾,然後更改代碼,如下所示:

styles: [ 
     'node_modules/bootstrap/dist/css/bootstrap.css', 
     'src/styles.css' 
] 

在角CLI渲染css文件給絕對路徑不是相對路徑。