vue create 安装依赖报 Found incompatible module

创建vue新项目会报如下错误:

error [email protected]: 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

问题解决!

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