处理yarn时报错:The engine "node" is incompatible with this module

yarn install 时报错
错误:

The engine "node" is incompatible with this module. Expected version "=> ".error Found incompatible module

解决:

yarn install --ignore-engines

This is also documented in the command’s help:

$ yarn help | grep -- --ignore
    --ignore-scripts                  don't run lifecycle scripts
    --ignore-platform                 ignore platform checks
    --ignore-engines                  ignore engines check
    --ignore-optional                 ignore optional dependencies
————————————————
版权声明:本文为CSDN博主「白丁妄语」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/w903328615/article/details/79537524

你可能感兴趣的:(报错/Bug)