fix(docs): 修复入门指南导航链接路径

- 修正了入门指南主链接从 /zh-CN/getting-started/installation 到 /zh-CN/getting-started
- 调整了侧边栏中架构概览和安装配置的顺序
- 确保导航链接与实际页面路径保持一致
This commit is contained in:
GeWuYou 2026-02-12 01:22:38 +08:00
parent 3136c03b03
commit f2a15a8302

View File

@ -45,7 +45,7 @@ export default defineConfig({
nav: [
{ text: '首页', link: '/zh-CN/' },
{ text: '入门指南', link: '/zh-CN/getting-started/installation' },
{ text: '入门指南', link: '/zh-CN/getting-started' },
{ text: 'Core', link: '/zh-CN/core/' },
{ text: 'Game', link: '/zh-CN/game/' },
{ text: 'Godot', link: '/zh-CN/godot/' },
@ -58,9 +58,9 @@ export default defineConfig({
{
text: '入门指南',
items: [
{ text: '架构概览', link: '/zh-CN/getting-started' },
{ text: '安装配置', link: '/zh-CN/getting-started/installation' },
{ text: '快速开始', link: '/zh-CN/getting-started/quick-start' },
{ text: '架构概览', link: '/zh-CN/getting-started' }
]
}
],