I\'m trying to bundle only required Font Awesome 5 icons via webpack, but the icons are not replaced in the DOM.
I\'ve added all required packages from the
Try to use
fontawesome.library.add(faCheck);
instead of
fontawesome.icon(faCheck);
If it does not work, please update your question with your DOM template, to see how it's defined in there.