()
| 2 | import { routeTree } from './routeTree.gen' |
| 3 | |
| 4 | export function createRouter() { |
| 5 | const router = createTanStackRouter({ |
| 6 | routeTree, |
| 7 | defaultPreload: `intent`, |
| 8 | scrollRestoration: true, |
| 9 | }) |
| 10 | |
| 11 | return router |
| 12 | } |
| 13 | |
| 14 | export async function getRouter() { |
| 15 | return createRouter() |