Skip to content

Commit

Permalink
Ignores linting on types and adds output standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
msoledade committed Mar 15, 2024
1 parent 86bca5c commit ddb68e9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
reactStrictMode: true,
async redirects() {
return [
Expand All @@ -21,6 +22,13 @@ const nextConfig = {
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
};

module.exports = nextConfig;

0 comments on commit ddb68e9

Please sign in to comment.