4

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

error datastore-pubsub@2.0.0: 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.

Xylan
  • 142
  • 2
  • 13

1 Answers1

5

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.

leerob
  • 2,876
  • 1
  • 18
  • 38
  • so good to see you here, I follow you on youtube! And yes I read about the AWS thing, deployed the site on netlify for now. thank you and cheers – Xylan Mar 02 '22 at 05:06