内容目录
问题表象
使用yarn 安装依赖,提示报错
The engine "node" is incompatible with this module. Expected version "20 || >=22". Got "16.5.0"

解决办法(忽略提示)
yarn config set ignore-engines true

再次安装
yarn add xxx 成功
使用yarn 安装依赖,提示报错
The engine "node" is incompatible with this module. Expected version "20 || >=22". Got "16.5.0"
yarn config set ignore-engines true
yarn add xxx 成功