首页 > 其他分享 >Error: error:0308010C:digital envelope routines::unsupported

Error: error:0308010C:digital envelope routines::unsupported

时间:2024-04-10 15:12:44浏览次数:36  
标签:0308010C routines envelope unsupported digital Error

Error: error:0308010C:digital envelope routines::unsupported


 

一、问题现象

在使用 npm run dev 命令运行 vue 工程时,报错如下:

“Error: error:0308010C:digital envelope routines::unsupported”

 

二、解决方案

除了降低 Node 版本的方式,还可以通过如下方式解决该问题。

根据不同的操作系统,执行的命令如下:

1、Unix (Linux, macOS等)

export NODE_OPTIONS=--openssl-legacy-provider

 

2、Windows

set NODE_OPTIONS=--openssl-legacy-provider

 

3、PowerShell

$env:NODE_OPTIONS = "--openssl-legacy-provider"

 

PS:

Windows 操作系统执行后,效果如下(可以正常运行 Vue 工程):

 

标签:0308010C,routines,envelope,unsupported,digital,Error
From: https://www.cnblogs.com/miracle-luna/p/18126058

相关文章