We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.nojekyll
1 parent 4df964a commit 874b3dfCopy full SHA for 874b3df
.github/workflows/docs-deploy.yml
@@ -9,6 +9,8 @@ jobs:
9
build:
10
name: Build
11
runs-on: ubuntu-latest
12
+ env:
13
+ NEXT_PUBLIC_BASE_PATH: /provider-docs
14
15
steps:
16
- uses: actions/checkout@v4
next.config.mjs
@@ -9,4 +9,5 @@ export default withGuider({
// These are the normal Next.JS settings.
// Check out Next.JS docs: https://nextjs.org/docs/app/api-reference/next-config-js
output: 'export',
+ basePath: process.env.NEXT_PUBLIC_BASE_PATH || '',
});
0 commit comments