From 210a8d588ff617bee503caf6d636e4d0e8cab72a Mon Sep 17 00:00:00 2001 From: Jennie Robinson Faber Date: Sun, 26 Apr 2026 15:22:08 +0100 Subject: [PATCH] fix(build): disable @nuxt/fonts external providers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build was failing on Dokploy when fonts.bunny.net was unreachable from the build container. Fonts are already loaded at runtime via the explicit in app.head, so the auto-resolver is redundant — disable all external providers to remove the build-time network dependency. --- nuxt.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index 2043abb..ab9ad7d 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -7,6 +7,9 @@ export default defineNuxtConfig({ providers: { google: false, fontsource: false, + bunny: false, + adobe: false, + googleicons: false, }, }, colorMode: {