1234567891011121314 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- reactStrictMode: false,
- transpilePackages: ['jotai-devtools'],
- typescript: {
- // !! WARN !!
- // Dangerously allow production builds to successfully complete even if
- // your project has type errors.
- // !! WARN !!
- ignoreBuildErrors: true,
- },
- };
- export default nextConfig;
|