From f2a15a8302727110ac58e2cb80d1009beb72f3fb Mon Sep 17 00:00:00 2001 From: GeWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Thu, 12 Feb 2026 01:22:38 +0800 Subject: [PATCH] =?UTF-8?q?fix(docs):=20=E4=BF=AE=E5=A4=8D=E5=85=A5?= =?UTF-8?q?=E9=97=A8=E6=8C=87=E5=8D=97=E5=AF=BC=E8=88=AA=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修正了入门指南主链接从 /zh-CN/getting-started/installation 到 /zh-CN/getting-started - 调整了侧边栏中架构概览和安装配置的顺序 - 确保导航链接与实际页面路径保持一致 --- docs/.vitepress/config.mts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 1f3d4a9..f6cd578 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -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' } ] } ],