0308010C:digital envelope routines::unsupported

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"
},

 

保存并关闭。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章