I am new to Angular 6 ,In my project I got the below error
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'
and the browser shows
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';
...
...
...
Referred this : bootstrap not connect to the angular 6?
Can anyone help me to fix this error .