Error: error:0308010C:digital envelope routines::unsupported
Error: error:0308010C:digital envelope routines::unsupported
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
찾아보니까 노드 버전 다운그레이드 하래서 다운그레이드도 해봤는데 해결이 안됐다.
package-json의 react-scripts 버전의 react-script의 버전이 예전 버전이라서 그렇다.
나는 2.x.x였는데
npm install --save react-scripts@5.0.1 명령어를 통해
버전 업그레이드 하여 오류를 해결할 수 있었다.
참고 블로그
https://cocoon1787.tistory.com/852
[React] "Error: error:0308010C:digital envelope routines::unsupported" 에러 해결
🚀 Error log Error: error:0308010C:digital envelope routines::unsupported ... { opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ], library: 'digital envelope routines', reason: 'unsupported', code: 'ERR_OSSL_EVP_UNSU
cocoon1787.tistory.com