bilibili-API-collect/.vuepress/config.js

53 lines
1.6 KiB
JavaScript
Raw Normal View History

2023-09-14 19:55:11 +08:00
import { defaultTheme, defineUserConfig } from "vuepress";
import markdownItTaskLists from "markdown-it-task-lists";
import { copyCodePlugin } from "vuepress-plugin-copy-code2";
2023-09-14 19:55:11 +08:00
import { searchPlugin } from "@vuepress/plugin-search";
export default defineUserConfig({
2023-09-14 19:55:11 +08:00
base: "/bilibili-API-collect/",
lang: "zh-CN",
title: "BAC Document",
description: "社区开源的第三方哔哩哔哩 API 文档",
head: [["link", { rel: "icon", href: "/logo2.jpg" }]],
locales: {
"/": {
lang: "zh-CN",
},
2023-09-14 19:55:11 +08:00
},
theme: defaultTheme({
logo: "/logo2.jpg",
navbar: [
{ text: "首页", link: "/" },
{ text: "目录", link: "/#🍴目录" },
{ text: "贡献指南", link: "/CONTRIBUTING.html" },
{
text: "相关社群",
children: [
{
2024-02-01 18:23:12 +08:00
text: "QQ交流群综合技术交流",
2024-04-20 20:47:22 +08:00
link: "http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=ympvb3LAPT-Ulu3ezhGqbkJ8zXMKImOX&authKey=z1KdkOdKO3wytN43m9K6On9nBtnDL4pAoD6VQHCipFBb9TasNDKuDHCmOE6TF3uc&noverify=0&group_code=191187164",
2023-09-14 19:55:11 +08:00
},
{
2024-02-01 18:23:12 +08:00
text: "Telegram交流群Github Bot推送",
2023-09-14 19:55:11 +08:00
link: "https://t.me/bilibili_API_collect_community",
},
],
2023-09-14 19:55:11 +08:00
},
],
sidebar: "auto",
2024-02-01 18:23:12 +08:00
repo: "https://github.com/SocialSisterYi/bilibili-API-collect",
2023-09-14 19:55:11 +08:00
docsBranch: "master",
editLinkText: "在 GitHub 上编辑此页",
2024-02-01 18:23:12 +08:00
colorMode: "auto"
2023-09-14 19:55:11 +08:00
}),
plugins: [copyCodePlugin({}), searchPlugin({})],
markdown: {
code: {
lineNumbers: true,
},
2023-09-14 19:55:11 +08:00
},
extendsMarkdown: (md) => {
md.use(markdownItTaskLists);
},
});