Files
2025-06-23 13:47:00 -07:00

14 lines
304 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
};
export default nextConfig;