Skip to content

Commit 6b6e324

Browse files
authored
Merge pull request #34 from ProspektStudio/david
another fix
2 parents 27dc748 + 3a3931a commit 6b6e324

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/nextjs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ jobs:
7979
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
8080
- name: Build with Next.js
8181
run: ${{ steps.detect-package-manager.outputs.runner }} next build
82+
- name: List build output
83+
run: ls -la
8284
- name: Upload artifact
8385
uses: actions/upload-pages-artifact@v3
8486
with:

client/next.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)