I've integrated fontsawsome in
my angular project like
styles.scss
$fa-font-path: "~font-awesome/fonts";
@import '~font-awesome/scss/font-awesome';
it doesn't work
<i class="fas fa-user"></i>
<i class="far fa-user"></i>
<i class="fab fa-user"></i>
it works
<i class="fa fa-user"></i>
so what's the matter?
UPDATE
I found the problem
with
npm install fontawsome
you get the 4.7 version for the 5 version
you should run
npm i --save @fortawesome/fontawesome
npm i --save @fortawesome/fontawesome-free-solid
npm i --save @fortawesome/fontawesome-free-regular
npm i --save @fortawesome/fontawesome-free-brands
take a look at