📝 update vuepress and readme

This commit is contained in:
felinae98
2023-01-05 19:18:17 +08:00
parent 290e19868d
commit f1c1d0297c
5 changed files with 457 additions and 450 deletions
-12
View File
@@ -1,12 +0,0 @@
module.exports = {
title: 'Nonebot Bison',
description: 'Docs for Nonebot Bison',
themeConfig: {
navbar: [
{ text: '主页', link: '/' },
{ text: '部署与使用', link: '/usage/' },
{ text: '开发', link: '/dev/' },
{ text: 'Github', link: 'https://github.com/felinae98/nonebot-bison' }
]
}
}
+14
View File
@@ -0,0 +1,14 @@
import { defineUserConfig, defaultTheme } from "vuepress";
export default defineUserConfig({
title: "Nonebot Bison",
description: "Docs for Nonebot Bison",
theme: defaultTheme({
navbar: [
{ text: "主页", link: "/" },
{ text: "部署与使用", link: "/usage/" },
{ text: "开发", link: "/dev/" },
{ text: "Github", link: "https://github.com/felinae98/nonebot-bison" },
],
}),
});