We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be522f3 commit f8e027cCopy full SHA for f8e027c
.github/workflows/nextjs.yml
@@ -32,12 +32,12 @@ jobs:
32
- name: Build static export
33
run: |
34
npm run build
35
- cp docsnew/index.html docsnew/404.html # SPA fallback
+ cp docs/index.html docs/404.html # SPA fallback
36
37
- name: Upload artifact
38
uses: actions/upload-pages-artifact@v3
39
with:
40
- path: ./docsnew
+ path: ./docs
41
42
deploy:
43
environment:
next.config.mjs
@@ -4,7 +4,7 @@ const nextConfig = {
4
typescript: { ignoreBuildErrors: true },
5
images: { unoptimized: true },
6
output: 'export',
7
- distDir: "docsnew",
+ distDir: "docs",
8
basePath: '/dupsugsite',
9
assetPrefix: '/dupsugsite/',
10
images: { unoptimized: true }
0 commit comments