view love/epi/src/router.tsx @ 236:ec93f99438b2

[resume] Update experience summary
author MrJuneJune <me@mrjunejune.com>
date Mon, 03 Aug 2026 06:49:25 -0700
parents cf9caa4abc3e
children
line wrap: on
line source

import { createRouter } from '@tanstack/react-router';
import { routeTree } from './routeTree.gen';

export const router = createRouter({
  routeTree,
  defaultPreload: 'intent',
  context: { }, // Add auth and what not
});