芋道源码ruoyi-vue-pro项目前端yarn下载报错

安装了node最新的版本20.10.0,结果yarn下载依赖报错。

D:\code\IdeaProject\ruoyi-vue-pro\yudao-ui\yudao-ui-admin-vue2-master>yarn -install
error @achrinza/[email protected]: The engine "node" is incompatible with this module. Expected version "8 || 10 || 12 || 14 || 16 || 17". Got "20.10.0"
error Found incompatible module.

版本不兼容那就调整版本?太麻烦,执行以下命令

yarn config set ignore-engines true

是用于修复node版本不兼容的命令配置

本质上是忽略引擎版本检查

执行后的结果

D:\code\IdeaProject\ruoyi-vue-pro\yudao-ui\yudao-ui-admin-vue2-master>yarn config set ignore-engines true
yarn config v1.22.21
success Set "ignore-engines" to "true".
Done in 0.07s.

再执行yarn -install即可

你可能感兴趣的:(前端,vue.js,javascript)