mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
74 lines
1.9 KiB
JavaScript
74 lines
1.9 KiB
JavaScript
module.exports = {
|
||
title: "NoneBot",
|
||
description: "基于 酷Q 的 Python 异步 QQ 机器人框架",
|
||
markdown: {
|
||
lineNumbers: true
|
||
},
|
||
/**
|
||
* Extra tags to be injected to the page HTML `<head>`
|
||
*
|
||
* ref:https://v1.vuepress.vuejs.org/config/#head
|
||
*/
|
||
head: [
|
||
["link", { rel: "icon", href: "/logo.png" }],
|
||
["meta", { name: "theme-color", content: "#d32f2f" }],
|
||
["meta", { name: "application-name", content: "NoneBot" }],
|
||
["meta", { name: "apple-mobile-web-app-title", content: "NoneBot" }],
|
||
["meta", { name: "apple-mobile-web-app-capable", content: "yes" }],
|
||
[
|
||
"meta",
|
||
{ name: "apple-mobile-web-app-status-bar-style", content: "black" }
|
||
]
|
||
],
|
||
|
||
themeConfig: {
|
||
repo: "nonebot/nonebot",
|
||
docsDir: "docs",
|
||
docsBranch: "dev2",
|
||
editLinks: true,
|
||
editLinkText: "在 GitHub 上编辑此页",
|
||
lastUpdated: "上次更新",
|
||
smoothScroll: true,
|
||
nav: [{ text: "API", link: "/api/" }],
|
||
sidebar: {
|
||
"/api/": [
|
||
{
|
||
title: "NoneBot Api Reference",
|
||
path: "",
|
||
collapsable: false,
|
||
sidebarDepth: 3,
|
||
children: [
|
||
{
|
||
title: "nonebot 模块",
|
||
path: "nonebot",
|
||
sidebar: "auto"
|
||
},
|
||
{
|
||
title: "nonebot.typing 模块",
|
||
path: "typing",
|
||
sidebar: "auto"
|
||
},
|
||
{
|
||
title: "nonebot.log 模块",
|
||
path: "log",
|
||
sidebar: "auto"
|
||
},
|
||
{
|
||
title: "nonebot.exception 模块",
|
||
path: "exception",
|
||
sidebar: "auto"
|
||
},
|
||
{
|
||
title: "nonebot.config 模块",
|
||
path: "config",
|
||
sidebar: "auto"
|
||
}
|
||
]
|
||
}
|
||
]
|
||
}
|
||
},
|
||
|
||
plugins: ["@vuepress/plugin-back-to-top", "@vuepress/plugin-medium-zoom"]
|
||
};
|