当前位置:   article > 正文

Nodejs digital envelope routines::unsupported解决方法

envelope routines::unsupported

如果使用17版本以上的NodeJS会导致出现digital envelope routines::unsupported的错误。

如果想在IDE自动运行的时候解决这个问题,在项目文件page.json中将

"scripts": {
   "start": "react-scripts start",
   "build": "react-scripts build"
 },
  • 1
  • 2
  • 3
  • 4

改成

"scripts": {
   "start": "SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
   "build": "SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts build"
 },
  • 1
  • 2
  • 3
  • 4

即所有命令前面加上

SET NODE_OPTIONS=--openssl-legacy-provider
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/797908
推荐阅读
  

闽ICP备14008679号