From 551d9d0810091b0908ebae3dd1906459cb879d8c Mon Sep 17 00:00:00 2001 From: Carter Date: Fri, 16 Jan 2026 16:55:00 -0600 Subject: [PATCH] got rid of indexv2 in vite config --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index acc8cb4..846e8b7 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -17,7 +17,7 @@ export default defineConfig({ globPatterns: ['**/*.{js,css,html,png,jpg,svg}'], // Cache all common asset types maximumFileSizeToCacheInBytes: 20 * 1024 * 1024, // 20 MiB cleanupOutdatedCaches: true, - navigateFallback: "/indexV2.html", + navigateFallback: "/index.html", runtimeCaching: [ { urlPattern: ({ request }) => request.destination === 'document',