Skip to content

Commit 4a34cce

Browse files
committed
fix(docs): Simplify /docs redirect to go directly to quick-start
Removes intermediate redirect hop: - Before: /docs → /docs/help → /docs/help/quick-start (2 redirects) - After: /docs → /docs/help/quick-start (1 redirect)
1 parent 3049fb3 commit 4a34cce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/app/docs/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { redirect } from 'next/navigation'
22

33
export default function DocsPage() {
4-
redirect('/docs/help')
4+
redirect('/docs/help/quick-start')
55
}

0 commit comments

Comments
 (0)