docs: vuepress构建文档

This commit is contained in:
2024-03-28 08:31:49 +08:00
parent a8f6a25369
commit 0ac374f5df
41 changed files with 4041 additions and 0 deletions

15
docs/.vuepress/config.ts Normal file
View File

@ -0,0 +1,15 @@
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,
});