I installed FontAwesome on Angular 10 with the following command, but when I use it, nothing appears on the screen.
npm install --save-dev @fortawesome/fontawesome-free
angular.json:
"styles": [
"./node_modules/@angular/material/prebuilt-themes/purple-green.css",
"src/styles.css",
"./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
],
"scripts": [
"./node_modules/@fortawesome/fontawesome-free/js/all.min.js"
]
home.html:
<p><i class="fas fa-home"></i></p>
question from:https://stackoverflow.com/questions/65646887/problem-using-fontawesome-icon-on-angular-10