sendou.ink/react-router.config.ts
2025-12-29 19:21:11 +02:00

9 lines
268 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" },
} satisfies Config;