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 f4a30b0 commit fd30227Copy full SHA for fd30227
.github/workflows/pages.yml
@@ -70,8 +70,6 @@ jobs:
70
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
71
- name: Build with Next.js
72
run: ${{ steps.detect-package-manager.outputs.runner }} next build
73
- - name: Static HTML export with Next.js
74
- run: ${{ steps.detect-package-manager.outputs.runner }} next export
75
- name: Upload artifact
76
uses: actions/upload-pages-artifact@v1
77
with:
next.config.js
@@ -2,6 +2,10 @@
2
const nextConfig = {
3
reactStrictMode: true,
4
swcMinify: true,
5
-}
+ output: 'export',
6
+ images: {
7
+ unoptimized: true,
8
+ },
9
+};
10
-module.exports = nextConfig
11
+module.exports = nextConfig;
0 commit comments