· 1 min read

The engine "node" is incompatible with this module

When deploying to netlify I came across the following error which prevents deployment.

error [email protected]: The engine "node" is incompatible with this module. Expected version ">=12.0.0". Got "11.15.0"

A search reveals the answer on StackOverflow

On netlify, this can be achieved by creating an environment variable

KeyValue
YARN_FLAGS—ignore-engines
Share:
Back to Blog

Related Posts

View All Posts »
How to Connect to a DigitalOcean Managed Database When Your IP Address Changes

How to Connect to a DigitalOcean Managed Database When Your IP Address Changes

If you're working with a DigitalOcean managed database from your local machine, you've probably run into this frustrating scenario: everything works perfectly one day, then suddenly your database connection times out. The culprit? Your IP address changed, and it's no longer in the database's trusted sources list.

Paging In .Net Core with C# and Linq

Paging In .Net Core with C# and Linq

Almost every medium to large site requires some sort of paging through lists of information. The advantage of paging is that you only need to bring back a limited result set.