nonebot2/docs/.vuepress/config.js

52 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-08-13 16:46:45 +00:00
module.exports = {
title: 'NoneBot',
description: '基于酷 Q 的 Python 异步 QQ 机器人框架',
2018-08-14 13:09:09 +00:00
serviceWorker: true,
markdown: {
lineNumbers: true
},
2018-08-13 16:46:45 +00:00
themeConfig: {
repo: 'richardchien/none-bot',
docsDir: 'docs',
editLinks: true,
2018-08-13 17:53:02 +00:00
editLinkText: '在 GitHub 上编辑此页',
2018-08-13 16:46:45 +00:00
lastUpdated: '上次更新',
2018-08-14 13:09:09 +00:00
activeHeaderLinks: false,
2018-08-13 16:46:45 +00:00
nav: [
2018-08-15 16:35:56 +00:00
{ text: '指南', link: '/guide/' },
{ text: '进阶', link: '/advanced/' },
{ text: '配置', link: '/configurations.md' },
2018-08-14 15:52:52 +00:00
{ text: '术语表', link: '/glossary.md' },
2018-08-13 16:46:45 +00:00
],
sidebar: {
'/guide/': [
2018-08-14 13:09:09 +00:00
{
2018-08-15 16:35:56 +00:00
title: '指南',
2018-08-14 13:09:09 +00:00
collapsable: false,
children: [
'',
'installation',
'getting-started',
2018-08-14 15:52:52 +00:00
'whats-happened',
2018-08-14 17:24:25 +00:00
'basic-configurations',
2018-08-15 16:49:33 +00:00
'writing-commands',
'writing-nl-processors',
2018-08-14 17:24:25 +00:00
'tuling',
2018-08-15 16:49:33 +00:00
'handling-notices-and-requests',
2018-08-15 16:35:56 +00:00
'whats-next',
2018-08-14 13:09:09 +00:00
]
}
2018-08-15 16:35:56 +00:00
],
'/advanced/': [
{
title: '进阶',
collapsable: false,
children: [
'',
]
}
],
2018-08-13 16:46:45 +00:00
},
}
}