0


error:0308010C:digital envelope routines::unsupported

问题描述

使用

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://blog.csdn.net/chy555chy/article/details/128481013
版权归原作者 福州司马懿 所有, 如有侵权,请联系我们删除。

“error:0308010C:digital envelope routines::unsupported”的评论:

还没有评论