Skip to content

Commit

Permalink
Сайдбар сделан различным для различных разделов документации
Browse files Browse the repository at this point in the history
  • Loading branch information
sfaqer committed Oct 31, 2024
1 parent b74565e commit 9988b45
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,23 @@ export default defineConfig({
{ text: 'API', link: '/api/' }, // TODO: посмотреть, где красиво был сделан index.md (какая-то из либ), генератор MD в плагине генерирует лишний уровень # в заголовках
],

sidebar: getSidebar({
contentRoot: 'docs/',
contentDirs: [
{ text: 'Начало работы', dir: 'getting-started' },
{ text: 'Использование фреймворка', dir: 'framework-elements' },
],
collapsed: false,
}),
sidebar: {
"/": getSidebar({
contentRoot: 'docs/',
contentDirs: [
{ text: 'Начало работы', dir: 'getting-started' },
{ text: 'Использование фреймворка', dir: 'framework-elements' },
],
collapsed: false,
}),
"/api/": getSidebar({
contentRoot: 'docs/',
contentDirs: [
{ text: 'API', dir: 'api' },
],
collapsed: false,
})
},

editLink: {
pattern: 'https://github.com/autumn-library/docs/edit/master/docs/:path'
Expand Down

0 comments on commit 9988b45

Please sign in to comment.