From 20e2d4e1a12a97fa2fcea915f6d1c0deedbcbbb9 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:24:33 -0600 Subject: [PATCH] fix: Exclude docs/redoc from (#7082) --- 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 df2bd50d8..47512783e 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -219,7 +219,7 @@ export default defineNuxtConfig({ }, workbox: { navigateFallback: "/", - navigateFallbackAllowlist: [/^(?!\/api)/], + navigateFallbackAllowlist: [/^(?!\/api|\/docs|\/redoc)/], globPatterns: ["**/*.{js,css,html,png,svg,ico}"], globIgnores: ["404.html", "200.html"], cleanupOutdatedCaches: true,