opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ], library: 'digital envelope routines', reason: 'unsupported', code: 'ERR_OSSL_EVP_UNSUPPORTED'
Any ideas? May have something to do with open ssl token size
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ], library: 'digital envelope routines', reason: 'unsupported', code: 'ERR_OSSL_EVP_UNSUPPORTED'
Any ideas? May have something to do with open ssl token size
I believe if you cd into the project root and run export NODE_OPTIONS=--openssl-legacy-provider
or put it in your package.json under your build command as such:
"build": "export NODE_OPTIONS=--openssl-legacy-provider react-scripts build",
this should fix your issue. Let me know - good luck.
Also - check this post regarding this or similar issue.