Route Vite prefix properly

This commit is contained in:
StealthBadger747
2025-09-26 09:33:10 -07:00
committed by Aarnav Tale
parent 5b138c191a
commit 4df15fd4b2
+1 -1
View File
@@ -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(),