vscode运行react时报错
opensslErrorStack: [ ‘error:03000086:digital envelope routines::initialization error’ ],
library: ‘digital envelope routines’,
reason: ‘unsupported’,
code: ‘ERR_OSSL_EVP_UNSUPPORTED’
什么原因导致 “0308010c:digital envelope routines::unsupported” 的错误?
你遇到这个错误的可能原因主要有两个:
你没有使用 Node JS 的 LTS(长期支持)版本。你可以看到我使用的是 Node 17.0.0,这不是 Node 的 LTS 版本。
你使用的 react-script 的版本小于 5。
这个错误也可能发生,因为你使用的是Node 17。
查看 react-script 的版本
这里是我卸载后重新安装的,之前是5以下的版本
解决办法:卸载后重装 react-scripts
npm uninstall react-scripts
npm install react-scripts
其他解决方法请参考:https://www.crmeb.com/ask/thread/21959.html