/
githubmirror
/
gpt-runner
Обзор
Документация
Войти
/
githubmirror
/
gpt-runner
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/sidebars.ts
46 строк
951 B
JinmingYang
docs: move doc site dir to website dir
27 июн 2023, 18:22
27 июн 2023, 18:22
87887ca
Код
Авторство
О чём код?
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs' const sidebars: SidebarsConfig = { Docs: [ 'introduction', { type: 'category', label: 'Getting Started', link: { type: 'generated-index', }, collapsed: false, items: [ 'installation', 'configuration', ], }, { type: 'category', label: 'Guides', link: { type: 'generated-index', title: 'GPT Runner Guides', description: 'Let\'s learn about the most important GPT Runner concepts!', keywords: ['guides'], image: '/img/svg/logo.svg', }, items: [ 'guides/whats-next', ], }, { type: 'category', label: 'Tools', link: { type: 'doc', id: 'tools/index' }, items: [ 'tools/cli', 'tools/web', 'tools/vscode', ], }, ], } export default sidebars