Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

next.js

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.

like image 741
Xylan Avatar asked Oct 23 '25 16:10

Xylan


1 Answers

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.

like image 192
leerob Avatar answered Oct 26 '25 16:10

leerob