configuration file must specify a supported nodejs10 version that is compatible with the runtime specified in the deployment.

To specify a supported Node.js 10 version in your configuration file for deployment, follow these steps:

  1. Open the configuration file for your Node.js application.

  2. Locate the "engines" key in the configuration file.

  3. Add or update the "node" key within the "engines" object to specify the supported Node.js version. For example:

"engines": {
  "node": "10.x"
}
  1. Save the configuration file.

By following these steps, you can ensure that your Node.js application's deployment specifies a supported Node.js 10 version compatible with the runtime.