Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Before Deploy

Nogic edited this page Feb 26, 2020 · 3 revisions

Before Deploy

This project is designed to automatically deploy to GitHub Pages, so base path is set /${repositoryName}/.

If you want to deploy to other like / or /app/, you have to change it.

How to change Base Path

Fix Build step command to use your base path.

    - name: Build
      run: BASE_PATH=/app/ npm run generate

or remove BASE_PATH if you use / path

    - name: Build
      run: npm run generate