mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-05 19:36:43 +08:00
35 lines
853 B
TypeScript
35 lines
853 B
TypeScript
import { defineUserConfig, defaultTheme } from "vuepress";
|
|
|
|
export default defineUserConfig({
|
|
lang: "zh-CN",
|
|
title: "Nonebot Bison",
|
|
description: "Docs for Nonebot Bison",
|
|
theme: defaultTheme({
|
|
navbar: [
|
|
{ text: "主页", link: "/" },
|
|
{
|
|
text: "使用",
|
|
children: [
|
|
{
|
|
text: "安装",
|
|
link: "/usage/install.md",
|
|
activeMatch: "^/usage/install",
|
|
},
|
|
{
|
|
text: "入门",
|
|
link: "/usage/easy-use.md",
|
|
activeMatch: "^/usage/easy-use",
|
|
},
|
|
{
|
|
text: "详述",
|
|
link: "/usage",
|
|
activeMatch: "^/usage$",
|
|
},
|
|
],
|
|
},
|
|
{ text: "开发", link: "/dev/" },
|
|
{ text: "Github", link: "https://github.com/felinae98/nonebot-bison" },
|
|
],
|
|
}),
|
|
});
|