22.01.17 22:15 작성
·
2.4K
0
답변 1
1
현재 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