I am troubleshooting slow loading times on my dash web application. Running locally, the entire app will load in under 3 seconds, but it takes closer to 8 or 9 seconds to load when I access it through my cloud hosting. I just found out that I can reproduce the same loading time delay locally just by specifying the host name when calling app.run_server.
So testing locally with app.run_server(port=8000,debug=False), here is the Chrome network log:
And by just changing it to app.run_server(host=“192.168.0.19”,port=8000,debug=False) and setting host name to my local IP address, there is an additional almost 5 second delay (same approximate delay I am seeing when going through cloud):
Does anyone know why this might be?
Thanks!