nextjs에서 useEffect가 아무리봐도 2번 실행시킬 코드가 아닌데 자꾸 2번 실행돼서 찾아봤다.
next.config.js 에서 reactStrictMode 를 false 로 변경하고 앱을 재실행하자.
[ Found a change in next.config.js. Restart the server to see the changes in effect. ]
const nextConfig = {
reactStrictMode: false,
}
됐다
https://stackoverflow.com/questions/71835580/useeffect-being-called-twice-in-nextjs-typescript-app
'Frontend > React' 카테고리의 다른 글
[React] input 입력 시 콘솔 에러 (13) | 2021.01.19 |
---|---|
[React] React 프로젝트를 Github pages 에 배포(호스팅)하기 (12) | 2020.12.09 |