I have a NextJS app, that I deploy to fleek. There it gets built and deployed. I recently changed something which requires a newer node version (version 18)
The deployment used node-16 and therefore ran into an error:
I tried to change to node version to 18 in the fleek deploy settings page:
This results in an error that it can not find the docker image:
I then found out you can specify it like this and will give the latest node version:
fleek/next-js
This then gives me the same error as initially, so it seems this also uses version 16. Is there a way to use node 18 here and get this running?


