I got into this issue after installing ngx-bootstrap
> ng add ngx-bootstrap
Following went in angular.json
"styles": ["./dist/ngx-bootstrap/datepicker/bs-datepicker.css","./node_modules/bootstrap/dist/css/bootstrap.min.css","src/styles.css"]
Changed to following and error got fixed
"styles": ["node_modules/ngx-bootstrap/datepicker/bs-datepicker.css","node_modules/bootstrap/dist/css/bootstrap.min.css","src/styles.css"]