问题描述
- 我的node 版本为 17.9.1,在运行一个老项目的时候,报如下错误:
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
解决方案
-
经查:问题原因是因为 node 17版本中的openssl和14版本的不同(老项目原本可以在node14版本下运行的)
-
解决方案,找到package.json 文件,加上:
set NODE_OPTIONS=--openssl-legacy-provider &&
如下:文章来源:https://www.toymoban.com/news/detail-511191.html"dev": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
-
在linux环境下,加上:
export NODE_OPTIONS=--openssl-legacy-provider &&
,如下:文章来源地址https://www.toymoban.com/news/detail-511191.html"dev": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
到了这里,关于已解决:opensslErrorStack: [ ‘error:03000086:digital envelope routines::initialization error‘ ],的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!