From ee550f4fe3de67613432cd7dc696a90f969cc99e Mon Sep 17 00:00:00 2001 From: api2062 <91228559+api2062@users.noreply.github.com> Date: Sun, 15 Mar 2026 16:43:54 -0700 Subject: [PATCH] fix: exclude index.html from workbox precache to prevent stale 401 app shell (#7255) Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> --- frontend/nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 8abd53a6f..0328e21fa 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -221,7 +221,7 @@ export default defineNuxtConfig({ navigateFallback: "/", navigateFallbackAllowlist: [/^(?!\/api|\/docs)/], globPatterns: ["**/*.{js,css,html,png,svg,ico}"], - globIgnores: ["404.html", "200.html"], + globIgnores: ["404.html", "200.html", "index.html"], cleanupOutdatedCaches: true, skipWaiting: true, clientsClaim: true,