We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b533ba8 commit 95c57efCopy full SHA for 95c57ef
.github/workflows/deploy.yml
@@ -26,5 +26,5 @@ jobs:
26
uses: JamesIves/github-pages-deploy-action@v4
27
with:
28
branch: gh-pages
29
- folder: out
30
- token: ${{ secrets.GITHUB_TOKEN }}
+ folder: build
+ token: ${{ secrets.GITHUB_TOKEN }}
next.config.mjs
@@ -1,11 +1,12 @@
1
/** @type {import('next').NextConfig} */
2
const nextConfig = {
3
output: 'export',
4
+ distDir: 'build',
5
basePath: '',
6
assetPrefix: 'https://vaqm2.github.io/',
7
images: {
8
unoptimized: true,
9
},
10
};
11
-export default nextConfig;
12
+export default nextConfig;
0 commit comments