We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27dc748 + 3a3931a commit 6b6e324Copy full SHA for 6b6e324
2 files changed
.github/workflows/nextjs.yml
@@ -79,6 +79,8 @@ jobs:
79
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
80
- name: Build with Next.js
81
run: ${{ steps.detect-package-manager.outputs.runner }} next build
82
+ - name: List build output
83
+ run: ls -la
84
- name: Upload artifact
85
uses: actions/upload-pages-artifact@v3
86
with:
client/next.config.js
@@ -0,0 +1,10 @@
1
+/** @type {import('next').NextConfig} */
2
+const nextConfig = {
3
+ output: 'export',
4
+ trailingSlash: true,
5
+ images: {
6
+ unoptimized: true
7
+ }
8
+}
9
+
10
+module.exports = nextConfig
0 commit comments