mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-04 02:26:11 +08:00
22 lines
408 B
TypeScript
22 lines
408 B
TypeScript
import { defineUserConfig } from "vuepress";
|
|
import theme from "./theme.js";
|
|
import { mdEnhancePlugin } from "vuepress-plugin-md-enhance";
|
|
|
|
export default defineUserConfig({
|
|
base: "/",
|
|
|
|
lang: "zh-CN",
|
|
title: "NoneBot Bison",
|
|
description: "NoneBot Bison 文档",
|
|
plugins: [
|
|
mdEnhancePlugin({
|
|
mermaid: true,
|
|
}),
|
|
],
|
|
|
|
theme,
|
|
|
|
// 和 PWA 一起启用
|
|
// shouldPrefetch: false,
|
|
});
|