Since yesterday afternoon we have been experiencing extremely low download speeds of up to several minutes after a new deploy. Everything was working nice before.
The problem is not TTFB, it’s download speed. Once all the contents have been cached, the App works normally.
We are accessing from Spain, with users spread across the country who experience the same, but it does not seem like a problem with the Internet. We are also not behind any proxy.
https://testmysite.io/5e7b46dac0fd560f71f16c89/kpaces.com gives 99/100, so it may be a network problem.
Our app is in production (https://kpaces.com), so we can’t do too much testing. The problem could have already been solved, but we have no way of knowing without putting our users’ access at risk.
We have not encountered any similar cases in the support forum.
Could it be related to changes in redirect rules?
Our _redirects file is this:
/reset /clear.html 301
/clean /clear.html 301
/fix /clear.html 301
/clear /clear.html 301
And our netlify.toml this:
[[headers]]
for = "*"
Cache-Control = "public, max-age=604800"
[headers.values]
X-Frame-Options = "DENY"
X-Xss-Protection = "1; mode=block"
X-Content-Type-Options = "nosniff"
Referrer-Policy = "strict-origin-when-cross-origin"
Feature-Policy = "fullscreen 'self'"
[[headers]]
for = "/index.html"
[headers.values]
Cache-Control = "no-cache"
[[headers]]
for = "/img/*"
[headers.values]
Cache-Control = "public, max-age=31536000"
[[headers]]
for = "/clear.html"
[headers.values]
Cache-Control = "no-cache"
Clear-Site-Data = "*"
[[redirects]]
from = "/*"
to = "/index.html"
status = 200
Thank you very much.