-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leaner and faster Docker image with multi-stage
- Loading branch information
Showing
4 changed files
with
571 additions
and
1,724 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,10 @@ | ||
/** @type {import('next').NextConfig} */ | ||
|
||
/** | ||
* We're ignoring ESLint and TypeScript errors during builds to allow deployments in emergency situations. | ||
* These issues are still caught and reported by our separate code quality GitHub Action, | ||
* but won't block deployment if urgent changes are needed. | ||
* | ||
* @see .github/workflows/code-quality-checks.yml for the quality checks implementation | ||
*/ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
experimental: { | ||
serverActions: true, | ||
}, | ||
eslint: { | ||
ignoreDuringBuilds: true, | ||
}, | ||
typescript: { | ||
ignoreBuildErrors: true, | ||
}, | ||
}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.