docs: vuepress构建文档

This commit is contained in:
远野千束 2024-03-28 10:42:44 +08:00
parent 57a302a71e
commit 19d79d356d
3 changed files with 3 additions and 4 deletions

View File

@ -31,7 +31,6 @@ jobs:
pnpm install pnpm install
pnpm run docs:build pnpm run docs:build
> .vuepress/dist/.nojekyll > .vuepress/dist/.nojekyll
- name: 部署文档 - name: 部署文档
uses: JamesIves/github-pages-deploy-action@v4 uses: JamesIves/github-pages-deploy-action@v4

View File

@ -1,5 +1,6 @@
import {defineUserConfig} from "vuepress"; import {defineUserConfig} from "vuepress";
import theme from "./theme.js"; import theme from "./theme.js";
import viteBundler from "@vuepress/bundler-vite";
export default defineUserConfig({ export default defineUserConfig({
base: "/", base: "/",
@ -15,7 +16,6 @@ export default defineUserConfig({
], ],
theme, theme,
// 和 PWA 一起启用 // 和 PWA 一起启用
// shouldPrefetch: false, // shouldPrefetch: false,
}); });

View File

@ -5,8 +5,8 @@
"target": "ES2022" "target": "ES2022"
}, },
"include": [ "include": [
"docs/.vuepress/**/*.ts", ".vuepress/**/*.ts",
"docs/.vuepress/**/*.vue" ".vuepress/**/*.vue"
], ],
"exclude": [ "exclude": [
"node_modules" "node_modules"