view love/epi/src/router.tsx @ 105:4de2fb74ce82

Adding few comments for future.
author June Park <parkjune1995@gmail.com>
date Sat, 03 Jan 2026 10:28:54 -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
});