diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-10 01:56:33 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-10 01:56:33 +0000 |
| commit | 4d2f28ecead7514a957d343b9d4d139afaa48421 (patch) | |
| tree | e5e92173f2f7006bc70f9d3768a13048e78abae0 /nuxt.config.ts | |
| parent | 5def5ad30934b13193e4b0d9e291025255b21ff4 (diff) | |
Fix broken fontawesome references
Diffstat (limited to 'nuxt.config.ts')
| -rw-r--r-- | nuxt.config.ts | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/nuxt.config.ts b/nuxt.config.ts index b208d99..819b910 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -12,5 +12,13 @@ export default defineNuxtConfig({ ], css: [ '@fortawesome/fontawesome-svg-core/styles.css' - ] + ], + build: { + transpile: [ + "@fortawesome/vue-fontawesome", + "@fortawesome/fontawesome-svg-core", + "@fortawesome/free-solid-svg-icons", + "@fortawesome/free-regular-svg-icons", + ], + }, }) |
