vue报错: error:0308010C:digital envelope routines::unsupported

问题解决参考:https://blog.csdn.net/m0_65933139/article/details/130690790

问题描述:
报错:Error: error:0308010C:digital envelope routines::unsupported

报错原因:
因为 node.js V17版本中最近发布的OpenSSL3.0, 而OpenSSL3.0对允许算法和密钥大小增加了严格的限制

报错详细信息:


解决方案:
方案1:打开IDEA 终端,直接输入

Linux & Mac OS:

export NODE_OPTIONS=--openssl-legacy-provider
Windows:

set NODE_OPTIONS=--openssl-legacy-provider
方案2:打开IDEA 终端,直接输入(问题解决)

$env:NODE_OPTIONS="--openssl-legacy-provider"
方案3:卸载Node.js17+版本,安装Node.js17-版本(一劳永逸,本人太懒就没尝试)

项目成功运行:


以上是三种解决方案,两种临时方案各位可以多做一下尝试,如果还实在不行就卸载Node.js重新安装17-的版
————————————————

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/m0_65933139/article/details/130690790

 

我使用的就是在idea下使用的:

$env:NODE_OPTIONS="--openssl-legacy-provider",直接解决。

 

posted @ 2024-02-18 16:10  谁主沉浮1226  阅读(73)  评论(0编辑  收藏  举报