https://developers.cloudflare.com/pages/how-to/custom-branch-aliases/
Cloudflare Docs
In this guide, you will learn how to add a custom domain (staging.example.com) that will point to a specific branch (staging) on your Pages project.



console.log(
"match",
await caches.default.match("https://cache.example.com/login"),
);
console.log(
"put",
await caches.default.put(
"https://cache.example.com/login",
Response.json({
test: true,
}),
),
);