1

I would run strapi.io on devilbox. This needed NodeJS 14.x.x, but Devilbox give me only version 16.x.x

How can I use the previous version of nodejs?

Zeroice89
  • 11
  • 1

1 Answers1

0

To degrade the node.js version, you can simply define the engine you want to use in the package.json of your project. Example:

"engines": {
    "node": "14.x"
},
Tyler2P
  • 2,324
  • 26
  • 22
  • 31