fix(frontend): build image even with no warnings

This commit is contained in:
leandrofars 2024-09-05 13:30:24 -03:00
parent b9c46bc419
commit 0a1e5fdf8f

View File

@ -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,
},
};