export default { async fetch(request) { // Return 200 for ANY request path, so we can prove the Worker is actually executing return new Response("WORKER-OK", { status: 200, headers: { "content-type": "text/plain; charset=utf-8", "cache-control": "no-store", }, }); }, };