关于前端:vue-create-安装依赖报-Found-incompatible-module

40次阅读

共计 270 个字符,预计需要花费 1 分钟才能阅读完成。

创立 vue 新我的项目会报如下谬误:

error eslint-plugin-vue@8.5.0: The engine “node” is incompatible with this module. Expected version “^12.22.0 || ^14.17.0 || >=16.0.0”. Got “14.16.1”
error Found incompatible module

这是版本兼容性查看未通过。
要求的版本与目前的版本不统一。
这个查看有时候不是那么精确,能够通过如下命令,把查看禁止掉。
yarn config set ignore-engines true

问题解决!

正文完
 0