Hi, I added a new app to SEED and setup the deploy...
# seed
j
Hi, I added a new app to SEED and setup the deployment following the guide. However I am getting a deployment error
error constructs@10.1.27: The engine "node" is incompatible with this module. Expected version ">= 14.17.0". Got "14.15.4" error Found incompatible module.
This seems to be a problem with the enviroment running on seed, how can I fix this?
r
You can set your node version like this
Copy code
before_compile:
  - n 14.17.0
j
That fixed the issue. Thanks for the help!