Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-hash committed Jan 5, 2025
1 parent 96fcbb2 commit ed2f45b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ jobs:
run: |
export NODE_OPTIONS="--trace-deprecation"
${{ steps.detect-package-manager.outputs.runner }} build
shell: /usr/bin/bash -ex {0}
- name: Debug build output
run: |
ls -l
ls -l .next || echo "No .next directory found"
ls -l out || echo "No out directory found"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down
3 changes: 0 additions & 3 deletions appv2/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
experimental: {
outputFileTracing: true,
},
}

module.exports = nextConfig
2 changes: 1 addition & 1 deletion appv2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "CI= next build -d",
"build": "NODE_OPTIONS='--trace-deprecation' CI=1 next build -d",
"start": "next start",
"lint": "next lint"
},
Expand Down

0 comments on commit ed2f45b

Please sign in to comment.