i am trying to deploy Nextjs app on Google App Engine but i am getting 500 server error as show below 
i have deployed the app using the Google App Engine browser terminal..
env: standard
runtime: nodejs12
service: default
handlers:
- url: /.*
secure: always
script: auto
above is the app.yaml code that i have used.
i have tried hosting React app with the above mentioned approach and it is hosting perfectly.
so, is there any way yo resolve this issue ?
I recreated your issue with the exact error. The problem was with
nodejsversion compatibility. Try usingnodejs16or above. This would solve your issue.