diff --git a/apps/web/www/next.config.ts b/apps/web/www/next.config.ts index 7e430ad..48d6d3a 100644 --- a/apps/web/www/next.config.ts +++ b/apps/web/www/next.config.ts @@ -2,6 +2,15 @@ import type { NextConfig } from "next"; import "./env"; -const nextConfig: NextConfig = {}; +const nextConfig: NextConfig = { + /* config options here */ + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, +}; export default nextConfig;