Skip to content

Commit f0a8428

Browse files
committed
chore: disable ESLint during Next.js builds
1 parent 37a976b commit f0a8428

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

next.config.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
eslint: {
4+
// Don't run ESLint during builds
5+
ignoreDuringBuilds: true
6+
}
7+
};
38

49
export default nextConfig;

0 commit comments

Comments
 (0)