We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54c46e7 commit c4ae9d3Copy full SHA for c4ae9d3
docs/reference/default-theme-config.md
@@ -135,7 +135,7 @@ export default {
135
export type Sidebar = SidebarItem[] | SidebarMulti
136
137
export interface SidebarMulti {
138
- [path: string]: SidebarItem[]
+ [path: string]: SidebarItem[] | { items: SidebarItem[]; base: string }
139
}
140
141
export type SidebarItem = {
@@ -162,6 +162,19 @@ export type SidebarItem = {
162
* If `false`, group is collapsible but expanded by default
163
*/
164
collapsed?: boolean
165
+
166
+ /**
167
+ * Base path for the children items.
168
+ */
169
+ base?: string
170
171
172
+ * Customize text that appears on the footer of previous/next page.
173
174
+ docFooterText?: string
175
176
+ rel?: string
177
+ target?: string
178
179
```
180
0 commit comments