From 2d55579cb765413275098fee64b537dccae7e924 Mon Sep 17 00:00:00 2001 From: Sylvie Date: Mon, 4 Dec 2023 11:04:29 -0700 Subject: [PATCH] docs: add Configure links --- docs/.vitepress/config.ts | 23 ++++++++++++++++++++++- docs/index.md | 3 +++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 8d55c72..d345e34 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -15,7 +15,8 @@ export default defineConfig({ { text: 'Docker', link: '/install/docker' }, { text: 'Local', link: '/install/local' } ] - } + }, + { text: 'Configure', link: '/configure/' } ], sidebar: [ @@ -27,6 +28,26 @@ export default defineConfig({ { text: 'Local', link: '/install/local' } ] }, + { + text: 'Configure', + link: '/configure/', + items: [ + { + text: 'SQL', + link: '/configure/sql', + items: [ + { + text: 'MySQL', + link: '/configure/sql/mysql' + }, + { + text: 'PostgreSQL', + link: '/configure/sql/postgresql' + } + ] + } + ] + }, { text: 'Customize', link: '/customize/', diff --git a/docs/index.md b/docs/index.md index a52897b..9f57a6b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -12,6 +12,9 @@ hero: - theme: brand text: Install link: /install/ + - theme: alt + text: Configure + link: /configure/ - theme: alt text: Customize link: /customize/