I have a next.js application up and runing for a few months on gcp app engine in node standard environment. The last deployment was done around 2 weeks ago and website was loading just fine until this week.
Here are the detected anomalies:
- css files randomly stuck as "pending" requests
- png files randomly stuck as "pending" requests
Above randomness can be observed under the same instance of Chrome in different tabs.
You can check it over here: https://clanhallroyale.com/
Surpringly, this behaviour does not happen at the build https://seventh-sensor-226609.appspot.com/
Here is app.yaml for the app.
# [START runtime]
runtime: nodejs10
handlers:
- url: /.*
script: auto
secure: always
# [END runtime]
There does not seem to be a clear clue of what's might be a problem. How can I tackle this?