mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2024-11-11 01:27:29 +08:00
30 lines
895 B
TypeScript
30 lines
895 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'},],
|
||
|
||
['link', {rel: 'stylesheet', href: 'https://cdn.bootcdn.net/ajax/libs/firacode/6.2.0/fira_code.min.css'}],
|
||
|
||
[
|
||
"meta",
|
||
{
|
||
name: "viewport",
|
||
content: "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no",
|
||
},
|
||
],
|
||
],
|
||
|
||
|
||
theme,
|
||
// 和 PWA 一起启用
|
||
// shouldPrefetch: false,
|
||
}); |