mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-08 04:43:00 +08:00
15 lines
424 B
TypeScript
15 lines
424 B
TypeScript
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" },
|
|
],
|
|
}),
|
|
});
|