next.config.mjs 359 B

1234567891011121314
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. reactStrictMode: false,
  4. transpilePackages: ['jotai-devtools'],
  5. typescript: {
  6. // !! WARN !!
  7. // Dangerously allow production builds to successfully complete even if
  8. // your project has type errors.
  9. // !! WARN !!
  10. ignoreBuildErrors: true,
  11. },
  12. };
  13. export default nextConfig;