超管后台 - 域名直接访问,从根路径 / 404 重定向到 /dashboard

This commit is contained in:
柳清爽
2025-04-24 17:49:57 +08:00
parent acd7e9005d
commit 63b45b73e3

5
SuperAdmin/app/page.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { redirect } from "next/navigation"
export default function Home() {
redirect("/dashboard")
}