diff --git a/next.config.js b/next.config.js index e4671c700..b86d798d9 100644 --- a/next.config.js +++ b/next.config.js @@ -6,6 +6,9 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({ }); module.exports = withBundleAnalyzer({ + eslint: { + ignoreDuringBuilds: true, + }, webpack: (config) => { // for dynamic loading of auth providers config.experiments = { ...config.experiments, topLevelAwait: true }; diff --git a/package.json b/package.json index 1d72a865f..bb33f9e6f 100644 --- a/package.json +++ b/package.json @@ -187,7 +187,6 @@ "importOrderSortSpecifiers": true }, "eslintConfig": { - "ignoreDuringBuilds": true, "extends": [ "next", "eslint:recommended",