chronocat/packages/docs/sidebars.ts

119 lines
2.5 KiB
TypeScript
Raw Normal View History

2024-03-06 04:32:45 +00:00
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'
const sidebars: SidebarsConfig = {
guide: [
{
type: 'category',
2024-03-10 13:04:15 +00:00
label: '安装 Chronocat',
2024-03-06 04:32:45 +00:00
link: {
type: 'doc',
2024-03-10 13:04:15 +00:00
id: 'guide/install/shell/index',
2024-03-06 04:32:45 +00:00
},
items: [
{
type: 'category',
label: '本机安装',
link: {
type: 'doc',
2024-03-10 13:04:15 +00:00
id: 'guide/install/shell/native/index',
2024-03-06 04:32:45 +00:00
},
2024-03-10 13:04:15 +00:00
items: ['guide/install/shell/native/llqqnt-airgap'],
2024-03-06 04:32:45 +00:00
},
2024-03-10 13:04:15 +00:00
'guide/install/shell/phone/index',
'guide/install/shell/trusted-installation',
],
},
{
type: 'category',
label: '安装引擎',
link: {
type: 'doc',
id: 'guide/install/engine/index',
},
items: [
'guide/install/engine/chronocat-api',
'guide/install/engine/chronocat-event',
2024-03-31 09:08:22 +00:00
'guide/install/engine/crychiccat',
2024-03-06 04:32:45 +00:00
],
},
{
type: 'category',
label: '接入',
link: {
type: 'doc',
2024-03-10 13:04:15 +00:00
id: 'guide/connect/index',
2024-03-06 04:32:45 +00:00
},
items: [
2024-03-10 13:04:15 +00:00
'guide/connect/koishi',
'guide/connect/nonebot',
'guide/connect/avilla',
'guide/connect/kiramibot',
2024-10-02 01:00:16 +00:00
'guide/connect/yutori',
2024-03-06 04:32:45 +00:00
],
},
{
type: 'category',
label: '配置',
link: {
type: 'doc',
2024-03-10 13:04:15 +00:00
id: 'guide/config/index',
2024-03-06 04:32:45 +00:00
},
2024-03-10 13:04:15 +00:00
items: ['guide/config/reference'],
2024-03-06 04:32:45 +00:00
},
],
developSatori: [
'develop/satori/index',
'develop/satori/quickstart',
{
type: 'category',
label: '基础',
link: {
type: 'doc',
id: 'develop/satori/fundamentals/index',
},
items: [
'develop/satori/fundamentals/resources',
'develop/satori/fundamentals/api',
'develop/satori/fundamentals/events',
'develop/satori/fundamentals/messages',
],
},
{
type: 'category',
label: '参考',
link: {
type: 'doc',
id: 'develop/satori/reference/index',
},
items: [
{
type: 'link',
label: 'API',
href: '/develop/satori/reference/api',
},
'develop/satori/reference/elements/index',
],
},
],
faq: [
{
type: 'autogenerated',
dirName: 'faq',
},
],
code: [
{
type: 'autogenerated',
dirName: 'code',
},
],
more: [
{
type: 'autogenerated',
dirName: 'more',
},
],
}
export = sidebars