import { library, dom } from '@fortawesome/fontawesome-svg-core' import { faFolder, faTag } from '@fortawesome/free-solid-svg-icons' import { faFacebookF, faTwitter, faLinkedinIn } from '@fortawesome/free-brands-svg-icons' // Add solid icons to our library library.add(faFolder, faTag) // Add brand icons to our library library.add(faFacebookF, faTwitter, faLinkedinIn) // Replace any existing tags with and set up a MutationObserver to // continue doing this as the DOM changes. dom.watch()