mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-04 21:53:12 +08:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export default function Home() {
|
|
// 直接重定向到仪表板页面
|
|
redirect('/dashboard');
|
|
}
|