首页 > 其他分享 >0308010C:digital envelope routines::unsupported

0308010C:digital envelope routines::unsupported

时间:2023-03-22 18:44:14浏览次数:37  
标签:0308010C vue cli service envelope routines serve legacy build

node.js为全新版本Node.js v18.15.0。许多网站说是因为node版本过高,需要降级。

可以参考如下步骤和代码来进行。


把:

"scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build"
  },

 

改为:

修改package.json,在相关构建命令之前加入SET NODE_OPTIONS=--openssl-legacy-provider

"scripts": {
   "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
   "build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build"
},

 

保存并关闭。


标签:0308010C,vue,cli,service,envelope,routines,serve,legacy,build
From: https://www.cnblogs.com/insus/p/17244356.html

相关文章