LiteyukiBot/docs/.vuepress/config.ts

22 lines
504 B
TypeScript
Raw Normal View History

2024-03-28 03:12:55 +00:00
import {defineUserConfig} from "vuepress";
2024-03-28 02:50:19 +00:00
import theme from "./theme.js";
2024-03-28 03:12:55 +00:00
import viteBundler from "@vuepress/bundler-vite";
2024-03-28 02:50:19 +00:00
export default defineUserConfig({
2024-03-28 03:12:55 +00:00
base: "/",
2024-03-28 02:50:19 +00:00
2024-03-28 03:12:55 +00:00
lang: "zh-CN",
title: "LiteyukiBot",
description: "An OneBot Standard ChatBot",
head: [
// 设置 favor.ico.vuepress/public 下
[
'link', {rel: 'icon', href: 'https://cdn.liteyuki.icu/favicon.ico'}
]
],
2024-03-28 02:50:19 +00:00
2024-03-28 03:12:55 +00:00
theme,
// 和 PWA 一起启用
// shouldPrefetch: false,
2024-03-28 02:50:19 +00:00
});