/geolocation.json later, it's already loaded.
wrangler deploy? i'm using only Workers Scripts:Edit permission at the moment and get an "unauthorized" error in my logs...
/geolocation.jsonwrangler deployWorkers Scripts:Edit<link fetchpriority="low" rel="preload" href="/geolocation.json" as="fetch" crossorigin="anonymous" />setInterval(() => {
const link = document.createElement("link");
link.setAttribute("fetchpriority", "low");
link.setAttribute("rel", "preload");
link.setAttribute("href", `/geolocation.json`);
link.setAttribute("as", "fetch");
link.setAttribute("crossorigin", "anonymous");
document.head.appendChild(link);
}, 60000)