Update reactStrictMode to false in next.config.mjs

This commit is contained in:
yoosangwook 2024-09-10 13:30:58 +09:00
parent 2dd754325b
commit 6d6915c5c5

View File

@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
reactStrictMode: false,
swcMinify: true,
webpack: (config) => {
config.resolve.fallback = { fs: false }