问题描述
使用 npm run dev
或者 yarn run dev
时报错:error:0308010C:digital envelope routines::unsupported
nodejs 版本为 18.12.1
解决方案
Google 了一下发现是 Node JS 17 的 BUG,相关 ISSUE 也给出了解决办法,就是修改package.json,在相关构建命令之前加入set NODE_OPTIONS=--openssl-legacy-provider
"scripts": {
"dev": "set NODE_OPTIONS=--openssl-legacy-provider & node build/dev-server.js",
"serve": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service serve",
"build": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service build",
"build:report": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service build --report",
例如,如果你使用的命令是npm run dev
,那么就在 scripts 命令下的 dev 命令前面加
如果是 Linux 或者 WSL 环境,请加入 export NODE_OPTIONS=--openssl-legacy-provider
补充
你也可以把 NodeJS 的版本降到12,也不会出现这个问题文章来源:https://www.toymoban.com/news/detail-665645.html
觉得有用的,帮忙关注点赞下。谢啦!
觉得有用的,帮忙关注点赞下。谢啦!
觉得有用的,帮忙关注点赞下。谢啦!文章来源地址https://www.toymoban.com/news/detail-665645.html
到了这里,关于error:0308010C:digital envelope routines::unsupported的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!