Do Image files being loaded count towards hourly limit

I noticed that it doesn’t take long for me to exceed 4000 requests in an hour. I noticed that I actually load 32 images in everytime it loads. Is this why it exceeds so easily?

If not properly cached, each of those images will consume a request every time your page is loaded, yes. That still will leave you with 2 requests a minute, which could be easy to surpass.

We’ve also found that a few folks run into request-limit problems with Refresh App on Changes turned on, since every change will trigger a reload of the page - yours in particular might be susceptible to something like that - if you’re running into this problem while working on your project you might try turning that off.

So caching it would make it less resource consuming? Would that require a service worker?