fix(build): disable @nuxt/fonts external providers
Some checks failed
Test / vitest (push) Successful in 11m3s
Test / playwright (push) Failing after 9m27s
Test / visual (push) Failing after 9m23s
Test / Notify on failure (push) Successful in 2s

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:
Jennie Robinson Faber 2026-04-26 15:22:08 +01:00
parent 04eb33df6e
commit 210a8d588f

View file

@ -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: {