Files
nextjs-ts/next.config.mjs
2026-04-11 14:03:15 -04:00

10 lines
168 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;