From 4b1f9626fa25a044ab4d946600fa91b4234510da Mon Sep 17 00:00:00 2001 From: wanchun <445436867@qq.com> Date: Wed, 25 May 2022 11:34:10 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E5=8F=91=E5=B8=83=E5=88=B0pages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docs.yml | 2 +- docs/.vuepress/config.ts | 2 +- package.json | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a05bc36f..88cb7b9a 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -40,7 +40,7 @@ jobs: - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. run: | yarn - yarn docs:build + yarn docs:build-pages - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.3.3 diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 7fe65c08..67ab9867 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -6,7 +6,7 @@ const config: UserConfig = { bundler: '@vuepress/webpack', - base: '/', + base: process.env.BASE ? process.env.BASE : '/', // evergreen: process.env.NODE_ENV !== 'production', diff --git a/package.json b/package.json index f33e79e0..bbcdc15a 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "release": "node scripts/build.js && lerna publish from-git", "docs:dev": "vuepress dev docs --clean-cache", "docs:build": "vuepress build docs --clean-cache", + "docs:build-pages": "BASE=fes.js vuepress build docs --clean-cache", "test": "fes test", "lint": "eslint -c ./.eslintrc.js --ext .js,.jsx,.vue,.ts" },