Customer Question: I've just added a Worker on the Cloudflare Dashboard for my website: it works in the debugger but doesn't work when I query the site. Why is that? Is there anything to activate or anything I could check?
Hi there,
Thanks for reaching out. If your Worker works in the debugger but not when you access the live site,
the most common issue is that the route isn't correctly configured. Please check that the Worker is
deployed and bound to the correct route (e.g. customer-website.com).
Regards,
Hugo Cabrita
Workers must be associated with a route to be applied to live traffic. The debugger runs the Worker code in isolation, so route binding is not required there. This mismatch is often the root cause.