Node v16 issues?

My app automatically adopted Node v16 in production (Thanks Heroku), and it started crashing. Looks like a Prisma error but wanted to drop a note here to ask if anyone else has seen this? Also so that others searching for this issue have something come up pointing them in the right direction.

For me, pinning to Node v14.16.1 fixed this issue:

// In package.json
"engines": {
  "node": "14.16.1"
},

Can confirm that you aren’t the only one seeing issues with v16. Since it just came out I think this is to be expected, so using an earlier version’s just the way to go till prisma gets around to supporting it. Which is basically the next version!

I would be more surprised if Node 16 didn’t have issues.