Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"pages": [
"index",
"quickstart",
"installation",
"ai-native"
]
},
Expand Down Expand Up @@ -86,7 +87,6 @@
"editor/keyboard-shortcuts"
]
},
"installation",
"create/text",
"create/code",
{
Expand Down
22 changes: 12 additions & 10 deletions organize/settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
Loading