diff --git a/docs.json b/docs.json index bdbca0d38..2b3671dd2 100644 --- a/docs.json +++ b/docs.json @@ -27,6 +27,7 @@ "pages": [ "index", "quickstart", + "installation", "ai-native" ] }, @@ -86,7 +87,6 @@ "editor/keyboard-shortcuts" ] }, - "installation", "create/text", "create/code", { diff --git a/organize/settings.mdx b/organize/settings.mdx index 1a7e84e15..c120fa9f5 100644 --- a/organize/settings.mdx +++ b/organize/settings.mdx @@ -84,16 +84,18 @@ Add a `$ref` property with a relative file path anywhere in your `docs.json`. Mi ``` ```json config/navigation.json -[ - { - "group": "Get started", - "pages": ["index", "quickstart"] - }, - { - "group": "Guides", - "pages": ["guides/first-steps", "guides/advanced"] - } -] +{ + "groups": [ + { + "group": "Get started", + "pages": ["index", "quickstart"] + }, + { + "group": "Guides", + "pages": ["guides/first-steps", "guides/advanced"] + } + ] +} ``` - Referenced files can contain their own `$ref` references. Nested paths resolve relative to the file that contains them, not relative to `docs.json`.