npm install bootstrap
Configure angular.json:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.scss"
]
Import directly in src/style.css:
@import '~bootstrap/dist/css/bootstrap.min.css';
after this i got this error:
ERROR in multi ./styles/bootstrap-4/css/bootstrap.min.css ./src/styles.css Module not found: Error: Can't resolve '/Users/kobi.ktk/Documents/3yr/UI/a4app/styles/bootstrap-4/css/bootstrap.min.css' in '/Users/kobi.ktk/Documents/3yr/UI/a4app'
@import 'bootstrap/dist/css/bootstrap.min.css';instead of@import '~bootstrap/dist/css/bootstrap.min.css';this. - Sanoj_Vstylesblock in theangular.jsonthen direct import is not required. - Niral Munjariya