mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
30 lines
801 B
TypeScript
30 lines
801 B
TypeScript
import {defineUserConfig} from "vuepress";
|
||
import theme from "./theme.js";
|
||
import viteBundler from "@vuepress/bundler-vite";
|
||
|
||
export default defineUserConfig({
|
||
base: "/",
|
||
|
||
lang: "zh-CN",
|
||
title: "LiteyukiBot 轻雪机器人",
|
||
description: "LiteyukiBot | 轻雪机器人 | An OneBot Standard ChatBot | 一个OneBot标准的聊天机器人",
|
||
head: [
|
||
// 设置 favor.ico,.vuepress/public 下
|
||
[
|
||
'link', {rel: 'icon', href: 'https://cdn.liteyuki.icu/favicon.ico'},
|
||
|
||
],
|
||
[
|
||
"meta",
|
||
{
|
||
name: "viewport",
|
||
content: "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no",
|
||
},
|
||
],
|
||
],
|
||
|
||
|
||
theme,
|
||
// 和 PWA 一起启用
|
||
// shouldPrefetch: false,
|
||
}); |