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 33fdfe8 commit 96fcbb2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
run: echo "Secrets set"
- name: Build with Next.js
run: |
export NODE_OPTIONS="--trace-deprecation"
${{ steps.detect-package-manager.outputs.runner }} build
shell: /usr/bin/bash -ex {0}
- name: Upload artifact
Expand Down
11 changes: 10 additions & 1 deletion appv2/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@ const nextConfig = {
}
config.externals.push('pino-pretty', 'encoding')
return config
}
},
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
experimental: {
outputFileTracing: true,
},
}

module.exports = nextConfig

0 comments on commit 96fcbb2

Please sign in to comment.