2026-08-18 16:26:10 +00:00
|
|
|
/** 第一次引導期間允許停留的頁面。其他路徑會被帶回連帳號。 */
|
|
|
|
|
export function isFirstRunAllowedPath(pathname: string): boolean {
|
|
|
|
|
if (pathname === "/app" || pathname === "/app/today") return true;
|
|
|
|
|
if (pathname.startsWith("/app/crew")) return true;
|
|
|
|
|
if (pathname.startsWith("/app/settings")) return true;
|
|
|
|
|
if (pathname.startsWith("/app/profile")) return true;
|
2026-08-19 07:37:44 +00:00
|
|
|
if (pathname.startsWith("/app/radar")) return true;
|
2026-08-18 16:26:10 +00:00
|
|
|
return false;
|
|
|
|
|
}
|