dify/web/app/page.tsx
yyh 4d439028e5
refactor(web): simplify home page redirect and replace dayjs with native Date API
Move OAuth pending redirect check out of page.tsx since AppInitializer
already handles it globally. Simplify home page to a server-side redirect
and remove dayjs dependency in favor of native Date.now().
2026-02-10 13:53:46 +08:00

6 lines
102 B
TypeScript

import { redirect } from 'next/navigation'
const Home = () => redirect('/apps')
export default Home