赞
踩
在package.json更改scripts
可以在 package.json 文件中更改 scripts,将 SET NODE_OPTIONS=–openssl-legacy-provider && vue-cli-service serve 添加到 dev 命令中
"dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
这样,在执行 npm run dev 命令时,Node.js 就会自动设置 NODE_OPTIONS 环境变量,并启用 OpenSSL 1.0.x 的兼容模式,从而避免 opensslErrorStack 错误的出现。
文章参考链接https://blog.csdn.net/qq_46207024/article/details/133123106 需求原因,只用到了方案二~,有效的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。