diff --git a/next.config.js b/next.config.js index 32b34a8..c8a6ab9 100644 --- a/next.config.js +++ b/next.config.js @@ -4,18 +4,23 @@ const nextConfig = { async redirects() { return [ { - source: '/', - destination: '/campaigns', + source: "/", + destination: "/campaigns", basePath: false, - permanent: false - } - ] + permanent: false, + }, + ]; }, i18n: { - locales: ['en-US', 'es'], - defaultLocale: 'en-US', + locales: ["en-US", "es"], + defaultLocale: "en-US", // localePath: resolve('./public/locales'), - } -} + }, + eslint: { + // Warning: This allows production builds to successfully complete even if + // your project has ESLint errors. + ignoreDuringBuilds: true, + }, +}; -module.exports = nextConfig +module.exports = nextConfig;