I\'m building an angular 2 app written in typescript. It would use the bootstrap 4 framework in combination with some custom theming, is this possible?
step 1. npm i bootstrap@latest --save
step 2. open angular.json and then add bootstrap:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.scss"
]
step 3. restart the server to see the changes
ng serve