After attempting to add Bootstrap and Font Awesome to my Angular application, I am encountering issues.
I utilized the command
npm install --save bootstrap font-awesome
and included both libraries in the angular.json file as follows:
"styles": ["node_modules/bootstrap/dist/css/bootstrap.min.css", "node_modules/font-awesome/css/all.min.css", "src/styles.css"], "scripts": ["node_modules/bootstrap/dist/js/bootstrap.min.js"
However, when I include
<i class="fa fa-facebook"></i>
in the app.component.html page, it does not display properly.
My Angular version is 15.1.4. Can someone please point out what I might be doing incorrectly?