From 0a7c8d9cd0f95f1d235d1d1ba0bf9afcea054d9a Mon Sep 17 00:00:00 2001 From: josedario87 Date: Mon, 13 Oct 2025 02:24:17 -0600 Subject: [PATCH] Fix Workbox configuration: remove networkTimeoutSeconds from NetworkOnly handler --- nuxt4/nuxt.config.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nuxt4/nuxt.config.ts b/nuxt4/nuxt.config.ts index 3467460..ef5782e 100644 --- a/nuxt4/nuxt.config.ts +++ b/nuxt4/nuxt.config.ts @@ -78,10 +78,7 @@ export default defineNuxtConfig({ runtimeCaching: [ { urlPattern: /^https:\/\/authentik\.nucleoriofrio\.com\/.*/i, - handler: 'NetworkOnly', - options: { - networkTimeoutSeconds: 10 - } + handler: 'NetworkOnly' } ] },