mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
16 lines
291 B
TypeScript
16 lines
291 B
TypeScript
import { defineUserConfig } from "vuepress";
|
|
import theme from "./theme.js";
|
|
|
|
export default defineUserConfig({
|
|
base: "/",
|
|
|
|
lang: "zh-CN",
|
|
title: "文档演示",
|
|
description: "vuepress-theme-hope 的文档演示",
|
|
|
|
theme,
|
|
|
|
// 和 PWA 一起启用
|
|
// shouldPrefetch: false,
|
|
});
|