diff --git a/www/next.config.mjs b/www/next.config.mjs index 4678774..b9d73c2 100644 --- a/www/next.config.mjs +++ b/www/next.config.mjs @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + eslint: { + ignoreDuringBuilds: true, + } +}; export default nextConfig;