Skip to content

Commit 5a085f5

Browse files
committed
Add eslint ignoreDuringBuilds option to next config
1 parent 5cc7417 commit 5a085f5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

frontend/next.config.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3+
eslint: {
4+
// Warning: This allows production builds to successfully complete even if
5+
// your project has ESLint errors.
6+
ignoreDuringBuilds: true,
7+
},
38

49
webpackDevMiddleware: (config) => {
510
config.watchOptions = {

0 commit comments

Comments
 (0)