Categories
JavaScript Answers

How to ignore incompatible engine “node” error on installing npm dependencies with yarn?

Spread the love

To ignore incompatible engine "node" error on installing npm dependencies with yarn, we remove the engines entry from the package.json file.

We can also run

yarn config set ignore-engines true

to ignore the engines entry in package.json once by setting the ignore-engines setting to true.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *