From 3240642f00846882abb253d6edcc1605b55bd6f2 Mon Sep 17 00:00:00 2001 From: bryantgillespie Date: Tue, 2 Jun 2026 08:34:04 -0400 Subject: [PATCH] Move configuration to own subnav section --- app/app.config.ts | 9 ++++----- shared/utils/docsSections.ts | 12 ++++++++++-- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/app/app.config.ts b/app/app.config.ts index 345f3b03..56fa9f00 100644 --- a/app/app.config.ts +++ b/app/app.config.ts @@ -161,13 +161,12 @@ export default defineAppConfig({ to: '/self-hosting/overview', icon: 'material-symbols:dns-outline', }, - { - label: 'Configuration', - to: '/configuration/intro', - icon: 'material-symbols:settings-outline', - }, ], }, + { + label: 'Configuration', + to: '/configuration/intro', + }, { label: 'Resources', children: [ diff --git a/shared/utils/docsSections.ts b/shared/utils/docsSections.ts index 380b01de..df65678b 100644 --- a/shared/utils/docsSections.ts +++ b/shared/utils/docsSections.ts @@ -2,6 +2,7 @@ export type DocsSectionId = | 'getting-started' | 'guides' | 'deploy' + | 'configuration' | 'tutorials' | 'frameworks' | 'reference' @@ -45,9 +46,16 @@ export const docsSections: DocsSection[] = [ id: 'deploy', label: 'Hosting', to: '/cloud/getting-started/introduction', - prefixes: ['/cloud', '/self-hosting', '/configuration'], + prefixes: ['/cloud', '/self-hosting'], icon: 'material-symbols:cloud-outline', }, + { + id: 'configuration', + label: 'Configuration', + to: '/configuration/intro', + prefixes: ['/configuration'], + icon: 'material-symbols:settings-outline', + }, { id: 'frameworks', label: 'Frameworks', @@ -91,7 +99,7 @@ export const docsGroups: DocsGroup[] = [ label: 'Docs', to: '/getting-started/overview', icon: 'material-symbols:menu-book-outline', - sectionIds: ['getting-started', 'guides', 'deploy', 'frameworks', 'community'], + sectionIds: ['getting-started', 'guides', 'deploy', 'configuration', 'frameworks', 'community'], }, { id: 'reference',