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" },