From 0a1e5fdf8fb8ceb154eecfba809a50cf0e167754 Mon Sep 17 00:00:00 2001 From: leandrofars Date: Thu, 5 Sep 2024 13:30:24 -0300 Subject: [PATCH] fix(frontend): build image even with no warnings --- frontend/next.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/next.config.js b/frontend/next.config.js index 674cf3b..292d125 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -1,3 +1,8 @@ module.exports = { - reactStrictMode: false + reactStrictMode: false, + eslint: { + // Warning: This allows production builds to successfully complete even if + // your project has ESLint errors. + ignoreDuringBuilds: true, + }, };