From 4df15fd4b2ab703f4c7ef81c7ef4b256ca90047d Mon Sep 17 00:00:00 2001 From: StealthBadger747 Date: Fri, 26 Sep 2025 09:33:10 -0700 Subject: [PATCH] Route Vite prefix properly --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index 4f5469f..e24cd98 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -24,7 +24,7 @@ const config = await readFile('config.example.yaml', 'utf-8'); const { server } = parse(config); export default defineConfig(({ isSsrBuild }) => ({ - base: isSsrBuild ? `${prefix}/` : undefined, + base: `${prefix}/`, plugins: [ reactRouterHonoServer(), reactRouter(),