Skip to content

Commit 97450fa

Browse files
committed
fix(redirect): update homepage redirect path from quick-start to overview
The homepage was redirecting to '/docs/tutorial/quick-start' but the correct path should be '/docs/tutorial/overview' to match the updated documentation structure. 将主页重定向路径从 '/docs/tutorial/quick-start' 更新为 '/docs/tutorial/overview' 以匹配更新的文档结构。 Change-Id: I644dfb2d0de3a79f0aa2498a7e9402f2d1b6c8a7 Signed-off-by: OhYee <oyohyee@oyohyee.com>
1 parent 720e4a5 commit 97450fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Layout from '@theme/Layout';
55
export default function Home(): ReactNode {
66
const { siteConfig } = useDocusaurusContext();
77
useEffect(() => {
8-
if (window) window.location.href = '/docs/tutorial/quick-start';
8+
if (window) window.location.href = '/docs/tutorial/overview';
99
});
1010
return (
1111
<Layout

0 commit comments

Comments
 (0)