Skip to content

Commit

Permalink
do not check lint on build
Browse files Browse the repository at this point in the history
  • Loading branch information
ka8725 committed Dec 9, 2023
1 parent 2ec8a50 commit 0d4173a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ const nextConfig = {};
if (process.env.NODE_ENV === 'production') {
nextConfig.output = 'export';
nextConfig.assetPrefix = 'https://get.budgetingkid.com';
nextConfig.eslint = {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
};
}

module.exports = nextConfig;

0 comments on commit 0d4173a

Please sign in to comment.