next.config.mjs 333 B

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