We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6aaeef commit 2c2552cCopy full SHA for 2c2552c
.github/workflows/deploy-website.yml
@@ -43,6 +43,8 @@ jobs:
43
- name: 📦️ Build website app
44
working-directory: website
45
run: yarn build
46
+ env:
47
+ REPOSITORY_NAME: 'nightly-tests'
48
49
- name: 🚀 Deploy to GitHub Pages
50
uses: peaceiris/actions-gh-pages@v4
website/next.config.ts
@@ -4,6 +4,8 @@ const nextConfig: NextConfig = {
4
reactStrictMode: true,
5
poweredByHeader: false,
6
output: "export",
7
+ basePath: process.env.REPOSITORY_NAME ? `/${process.env.REPOSITORY_NAME}` : undefined,
8
+ assetPrefix: process.env.REPOSITORY_NAME ? `/${process.env.REPOSITORY_NAME}` : undefined,
9
turbopack: {
10
rules: {
11
"*.svg": {
0 commit comments