From 6f9bbba3fcc2ccbcce38fdf998fe37894a7519fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Restrepo?= Date: Thu, 12 Dec 2024 13:03:06 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=83=20fix:=20Exclude=20OAuth=20Routes?= =?UTF-8?q?=20From=20Service=20Worker=20Navigation=20(#4956)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/client/vite.config.ts b/client/vite.config.ts index eee6e6b9de..a349e1fbcd 100644 --- a/client/vite.config.ts +++ b/client/vite.config.ts @@ -62,6 +62,7 @@ export default defineConfig({ workbox: { globPatterns: ['assets/**/*.{png,jpg,svg,ico}', '**/*.{js,css,html,ico,woff2}'], maximumFileSizeToCacheInBytes: 4 * 1024 * 1024, + navigateFallbackDenylist: [/^\/oauth/], }, manifest: { name: 'LibreChat',