This commit is contained in:
Sotig
2026-05-29 21:16:10 +03:00
parent 778380dc35
commit 0c40983293
35 changed files with 4905 additions and 1 deletions

14
ui/react-router.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import type { Config } from "@react-router/dev/config";
export default {
// Config options...
// Server-side render by default, to enable SPA mode set this to `false`
ssr: true,
future: {
v8_middleware: true,
v8_passThroughRequests: true,
v8_splitRouteModules: true,
v8_trailingSlashAwareDataRequests: true,
v8_viteEnvironmentApi: true,
},
} satisfies Config;