Mercurial
view love/epi/src/routes/index.tsx @ 235:38bd030ebea4
[resume] Strengthen Microsoft impact and skills
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sun, 02 Aug 2026 19:26:55 -0700 |
| parents | cf9caa4abc3e |
| children |
line wrap: on
line source
import { createFileRoute, redirect } from '@tanstack/react-router'; export const Route = createFileRoute('/')({ beforeLoad: () => { // This runs on navigation to / throw redirect({ to: '/chat/new', replace: true, }); }, });