fix(build): disable @nuxt/fonts external providers
Build was failing on Dokploy when fonts.bunny.net was unreachable from the build container. Fonts are already loaded at runtime via the explicit <link rel="stylesheet"> in app.head, so the auto-resolver is redundant — disable all external providers to remove the build-time network dependency.
This commit is contained in:
parent
04eb33df6e
commit
210a8d588f
1 changed files with 3 additions and 0 deletions
|
|
@ -7,6 +7,9 @@ export default defineNuxtConfig({
|
||||||
providers: {
|
providers: {
|
||||||
google: false,
|
google: false,
|
||||||
fontsource: false,
|
fontsource: false,
|
||||||
|
bunny: false,
|
||||||
|
adobe: false,
|
||||||
|
googleicons: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
colorMode: {
|
colorMode: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue