[React] ReferenceError: process is not defined
2022. 10. 9. 11:09
Promblem:
react로 이것저것 시도를 해 보던 중, 이와 같은 오류가 발생하였다.
<ReferenceError: process is not defined>
Solve:
If the error is not resolved, try installing the 6.0.9 version of the react-error-overlay package.
간단하게 버전 6.0.9의 react-error-overlay를 설치하면 된다고 한다.
# 👇️ with NPM
npm install --save-dev react-error-overlay@6.0.9
# --------------------------------------------
# 👇️ with YARN
yarn add react-error-overlay@6.0.9 --dev
결론: 근데 궁극적인 문제는 이게 아니었다... 일단 본문에서 말한 이 문제는 해결했는데 그냥 오류만 다채롭고 강렬하게 보여주는 방식으로 바뀐 것 뿐.... 다른 오류에 강렬하게 직면하게 됨.
참고글
'FE question' 카테고리의 다른 글
d3: d3를 이용한 컴포넌트에서 animation 효과 제외하기 (0) | 2022.10.09 |
---|---|
[React] Error: Maximum update depth 문제 (0) | 2022.10.09 |
[React] rerendering의 조건 (0) | 2022.10.09 |
Echart : all show label, setting interval (0) | 2022.10.02 |
[TS] Error (sorting Array) : objects Cannot assign to read only property '2' of object '[object Array] (0) | 2022.10.02 |