vue npm run serve 错误代码:ERR_OSSL_EVP_UNSUPPORTED
super
2023-03-13 21:51

code: 'ERR_OSSL_EVP_UNSUPPORTED'
方法1:
在package.json中的scripts
修改serve与build

修改为:

"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
方法2:
将node.js降到17以下

0 条讨论