diff --git a/next.config.mjs b/next.config.mjs new file mode 100644 index 0000000..f7226ce --- /dev/null +++ b/next.config.mjs @@ -0,0 +1,8 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + typescript: { + ignoreBuildErrors: true, + }, +}; + +export default nextConfig;