Next.js 13 StrictMode 해제

버건디·2023년 2월 17일
0

Next.js

목록 보기
26/52

- next.config.js 에서 reactStrictMode: false, 추가

/** @type {import('next').NextConfig} */
const nextConfig = {
  experimental: {
    appDir: true,
  },
  reactStrictMode: false,
};

module.exports = nextConfig;
profile
https://brgndy.me/ 로 옮기는 중입니다 :)

0개의 댓글