umami/src/app/page.tsx

6 lines
110 B
TypeScript
Raw Normal View History

2023-09-29 14:29:22 +02:00
import { redirect } from 'next/navigation';
export default function RootPage() {
redirect('/dashboard');
}