Default version problems when deploying using node

My project has node version 16X, but when deploying to Render, it appears with a different version, default 14x. Has anyone ever experienced this?

Hey,

If you haven’t configured a specific version on Render or within your project, this behavior is expected. For more details on setting the node version, you can refer to: https://render.com/docs/node-version.

Jérémy.
Render Support, UTC+3

I had this issue as well, to fix it, add a node version under engines in your package.json
It should look similar to this:

"engines": {
    "node": "^16.19.1"
  }

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.