16 lines
442 B
TypeScript
16 lines
442 B
TypeScript
/**
|
|
* 根路径处理
|
|
*
|
|
* 根页面只负责进入 splash。浏览器端认证初始化完成后,再由导航守卫决定
|
|
* 进入聊天页或保留在启动页。
|
|
*/
|
|
|
|
import { redirect } from "next/navigation";
|
|
|
|
import { DEFAULT_CHARACTER_SLUG } from "@/data/constants/character";
|
|
import { getCharacterRoutes } from "@/router/routes";
|
|
|
|
export default function Home() {
|
|
redirect(getCharacterRoutes(DEFAULT_CHARACTER_SLUG).splash);
|
|
}
|