Xylan
Xylan

Reputation: 142

The engine "node" is incompatible with this module. Expected version ">=16.0.0". Got "14.18.3" (while deploying to vercel)

i was trying to deploy my next.js project to vercel but got the following error.

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

enter image description here

I tried deleting yarn.lock file but the same error showed up nonetheless.

Upvotes: 4

Views: 6391

Answers (1)

leerob
leerob

Reputation: 3122

Your dependency is relying on Node.js 16+, but Vercel currently does not have support, as we are dependent on AWS. You can follow along here: https://github.com/vercel/community/discussions/37

Should hopefully be resolved very soon.

Upvotes: 5

Related Questions