umami/src/app/page.tsx

7 lines
124 B
TypeScript
Raw Normal View History

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