react 저장 시 iframe 강제 재생성 문제
현재 create-react-app 의 react-scripts 버그입니다 https://github.com/facebook/create-react-app/issues/11773 대응 방법은 다음과 같습니다. until a fix is final, for anyone using npm(not yarn) the solution is this: add to package.json: "resolutions": { "react-error-overlay": "6.0.9" }, "scripts":{ "preinstall": "npx npm-force-resolutions", .... }, "devDependencies":{ "react-error-overlay": "6.0.9", ... } and then do an npm install