Hello everyone, I'm facing the following error when I try to deploy my api through the google app engine:
```
Updating service [default]...
(gcloud.app.deploy) Error Response: [4] Timed out fetching pod.
ERROR: (gcloud.app.deploy) Error Response: [4] Timed out fetching pod.
gcloud deploy command process with PID 25424 was closed with code 1
```
and this error is after waiting for a long time...
however, if I make an app.yaml of 'env:flex' this error does not occur, but I just want 'standard' so as not to spend all the time.
my app.yaml
```
```
the config.json:
```
```
You mentioned config.json.
Did you mean "package.json"? If you didn't, do you have a package.json file? The documentation says
You specify the dependencies for your Node.js app by declaring them in the package.json file.
It was just a typo, while I was on my way to work, I ask you to ignore it.I correctly created package.json
Try including an engines attribute in it
"engines": {
"node": ">=18.0.0"
}