Files
fullstack-fuware/src/routes/(app)/(auth)/account/index.tsx
2026-01-20 22:21:06 +07:00

8 lines
198 B
TypeScript

import { createFileRoute, redirect } from '@tanstack/react-router';
export const Route = createFileRoute('/(app)/(auth)/account/')({
beforeLoad: () => {
throw redirect({ to: '/' });
},
});