报错:Error: error:0308010C:digital envelope routines::unsupported
报错:Error: error:0308010C:digital envelope routines::unsupported
运行VUE项目(npm run dev )时候跳出的报错,nodeJs V17版本后会出现这样的问题,解决办法就是降级或者使用下面方法
解决方案:
方案1:进入项目后打开终端(CMD),直接输入
Linux & Mac OS:
export NODE_OPTIONS=--openssl-legacy-provider
Windows:
set NODE_OPTIONS=--openssl-legacy-provider
或者直接在VUE配置文件中修改(package.json) 增加
修改后
"scripts": {
"dev": "set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"
},
修改前
"scripts": {
"dev": " vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
"lint": "eslint --ext .js,.vue src"
},
亲测有效。
最后更新于 2024-02-18 15:49:48 并被添加「」标签,已有 2936 位网友阅读过。
本站使用「署名 4.0 国际」创作共享协议,可自由转载、引用,但需署名作者且注明文章出处
此处评论已关闭