mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 05:37:20 +01:00
5 lines
110 B
TypeScript
5 lines
110 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export default function RootPage() {
|
|
redirect('/dashboard');
|
|
}
|