Angular 6中的多个./styles.css中的错误

前端之家收集整理的这篇文章主要介绍了Angular 6中的多个./styles.css中的错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Angular 6的新手,在我的项目中我得到了以下错误
ERROR in multi ./node_modules/bootstrap/dist/css/bootstrap.min.css ./styles.css
Module not found: Error: Can't resolve 'C:\Users\User\e-CommerceWebsite\styles.css' in 'C:\Users\User\e-CommerceWebsite'

和浏览器显示

cannot Get

angular.json

"styles": [
          "./node_modules/bootstrap/dist/css/bootstrap.min.css","styles.css"
        ],"scripts": [
          "./node_modules/jquery/dist/jquery.min.js","./node_modules/popper.js/dist/popper.min.js","./node_modules/bootstrap/dist/js/bootstrap.min.js"
        ]

styles.css的

@import '~bootstrap/dist/css/bootstrap.min.css';
...
...
...

提到这个:bootstrap not connect to the angular 6?

任何人都可以帮我修复此错误.

在角度6 angular.json文件中,使用bootstrap或font-awesome css文件,这将解决您的问题.
"styles": [
          {
            "input": "./node_modules/bootstrap/dist/css/bootstrap.min.css"
          },{
            "input": "./node_modules/font-awesome/css/font-awesome.min.css"
          },"src/styles.css"
        ],
原文链接:https://www.f2er.com/angularjs/141226.html

猜你在找的Angularjs相关文章