리액트 구버전 실행 시 Node 17+에서 발생하는 error:0308010C 에러 해결
·
개발/개발 일지
옛날 리액트 코드를 볼일이 있어서 신나게 npm start 때렸더니 에러가 떴습니다.npm i 할때부터 deprecated!!! deprecated!! 하더니 역시나…Error: error:0308010C:digital envelope routines::unsupported at new Hash (node:internal/crypto/hash:79:19) at Object.createHash (node:crypto:139:10) ... reason: 'unsupported', code: 'ERR_OSSL_EVP_UNSUPPORTED' 원인은?Node.js 17+ 버전에서 OpenSSL v3가 기본 적용되면서 Webpack(react-scripts 포함)과의 호환 문제로 발생하는 에러였..