view love/epi/src/router.tsx @ 187:a69485d9f2e1 hg-web

Fixed a small bug.
author MrJuneJune <me@mrjunejune.com>
date Fri, 23 Jan 2026 22:41:04 -0800
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
});