error:0308010C:digital envelope routines::unsupported
Posted 福州司马懿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于error:0308010C:digital envelope routines::unsupported的主要内容,如果未能解决你的问题,请参考以下文章
完美解决Error: error:0308010C:digital envelope routines::unsupportedwindows&linux
Vuenpm run serve时Error:0308010C:digital envelope routines::unsupported
Vuenpm run serve时Error:0308010C:digital envelope routines::unsupported