当前位置:   article > 正文

【开发日记】Error: error:0308010C:digital envelope routines::unsupported_95% emitting compressionplugin error error: error:

95% emitting compressionplugin error error: error:0308010c:digital envelope

异常:

node:internal/crypto/hash:71
  this[kHandle] = new _Hash(algorithm, xofLen);
                  ^

Error: error:0308010C:digital envelope routines::unsupported
    at new Hash (node:internal/crypto/hash:71:19)
    at Object.createHash (node:crypto:133:10)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

原因:

使用Node v18启动Node v14创建的项目出现如上异常

解决:

package.json中调整scripts,如下
原:

  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  • 1
  • 2
  • 3
  • 4
  • 5

调整:

  "scripts": {
    "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
    "build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
    "lint": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service lint"
  },
  • 1
  • 2
  • 3
  • 4
  • 5

注意:

调整后,node v14会报错

其他解决方法:

设置环境变量,自行百度

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/491932
推荐阅读
相关标签
  

闽ICP备14008679号