15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
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;
|