The sites I build usually have amazing load times on Netlify, but for the specific website below I’m finding there’s at least a second or two before anything paints, I feel like this is a DNS issue, has anyone encountered a similar thing?
Thanks to anyone who offers any advice, I really appreciate it.
You seem to be using SSR, which uses Netlify Functions + it doesn’t provide any kind of caching + it’s restricted to a single region. With all those pitfalls, sometimes if your site did not get enough traffic, it might fail from cold start issues, so the initial load might take even longer. For example, it took about 4.3 seconds for the initial load, but the subsequent load took 1.46 seconds.
Does your home page really need to be SSR? If not, you can convert that to static, or ISR.