在Angular 6应用程序中运行Bootstrap 4时遇到错误

时间:2018-08-24 09:40:23

标签: angular npm angular-ui-bootstrap angular-bootstrap

我已经使用Angular CLI安装了Bootstrap 4,但是运行应用程序后出现错误。

我已更新angular.json文件,如下所示:

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

我已将@import '~bootstrap/dist/css/bootstrap.min.css';文件添加到style.css

但仍然出现错误:

ERROR in multi ./src/styles.css ../node_modules/bootstrap/dist/css/bootstrap.min.css
Module not found: Error: Can't resolve '/Users/user/Projects/A4/node_modules/bootstrap/dist/css/bootstrap.min.css' in '/Users/user/Projects/A4/demo'

1 个答案:

答案 0 :(得分:0)

删除前面的“ ../”。

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