I ran "ng new" to create a new application and chose SCSS as the styling option. I donwnloaded bootstrap which comes in .css format only (I believe) and the application is not recognizing any bootstrap styling. Is it that Angular requires a bootstrap scss file? How do I solve this?
angular.json:
"styles": [
"src/styles.scss",
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
"./node_modules/bootstrap/dist/css/bootstrap.css",
"./node_modules/font-awesome/css/font-awesome.css"
],
"scripts": [
"./node_modules/jquery/dist/jquery.js",
"./node_modules/bootstrap/dist/js/bootstrap.js"
]