buster/apps/web/src/routes/index.tsx

10 lines
276 B
TypeScript

import { createFileRoute, redirect } from '@tanstack/react-router';
export const Route = createFileRoute('/')({
beforeLoad: async () => {
console.log('redirecting to /app/home');
throw redirect({ to: '/app/home', replace: true });
},
component: () => null,
});