mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-28 22:25:51 -05:00
10 lines
294 B
TypeScript
10 lines
294 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" },
|
|
splitRouteModules: true,
|
|
} satisfies Config;
|