diff --git a/next.config.mjs b/next.config.mjs index b5bef6c..46098da 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -7,11 +7,14 @@ /** @type {import("next").NextConfig} */ const config = { - reactStrictMode: true, - swcMinify: true, - i18n: { - locales: ["en"], - defaultLocale: "en", - }, + reactStrictMode: true, + swcMinify: true, + i18n: { + locales: ["en"], + defaultLocale: "en", + }, + typescript: { + ignoreBuildErrors: true, + } }; export default config;