| 12345678910111213141516 |
- import { library, config } from '@fortawesome/fontawesome-svg-core';
- import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
- // Import specific icons
- import { faSpinner } from '@fortawesome/free-solid-svg-icons';
- import { faTwitter } from '@fortawesome/free-brands-svg-icons';
- // Disable automatic CSS injection (Nuxt handles CSS separately)
- config.autoAddCss = false;
- // Add icons to the library
- library.add(faSpinner, faTwitter);
- export default defineNuxtPlugin((nuxtApp) => {
- nuxtApp.vueApp.component('FontAwesomeIcon', FontAwesomeIcon);
- });
|