are you using the standard .css file or are you using Less or Sass?
If it's just the standard .css file, just keep it in your /public/css or /public/fonts folder and then go with something like: <link rel="stylesheet" href="css/FONTAWESOME5_FILE_NAME.css" type="text/css"/> in your <head></head> section
I'm using 5.6 with Fontaweose 5 - can anyone suggest a way to only use selected icons, rather than including the entire set?
for example, instead of
import fontawesome from '@fortawesome/fontawesome';
import solid from '@fortawesome/fontawesome-free-solid';
fontawesome.library.add(solid);
can I do something like:
import fontawesome from '@fortawesome/fontawesome';
import faAddressBook from '@fortawesome/fontawesome-free-solid/faAddressBook.js';
fontawesome.library.add(faAddressBook);
Can't see why it doesnt work - npm run dev throws no errors but I dont see the icons in my view.