stack/examples/cjs-test/next.config.mjs
2024-06-16 14:58:10 +02:00

13 lines
292 B
JavaScript

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