mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 08:57:28 +08:00
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().
6 lines
102 B
TypeScript
6 lines
102 B
TypeScript
import { redirect } from 'next/navigation'
|
|
|
|
const Home = () => redirect('/apps')
|
|
|
|
export default Home
|