sendou.ink/react-router.config.ts
2026-01-03 13:47:32 +02:00

12 lines
306 B
TypeScript

import type { Config } from "@react-router/dev/config";
export default {
// Upfront cost vs. lazy loading trade-off
// also lazy loading causes more load on the server
// this matches old Remix v2 behavior
routeDiscovery: { mode: "initial" },
future: {
v8_middleware: true,
},
} satisfies Config;