ah the script tag is actually not the tags, there is a `tag` and `tags` prop on a script 😦
ah the script tag is actually not the tags, there is a 
tag and tags prop on a script tagtags
https://yourwebsite.com/cdn-cgi/trace?colo=FOOesbuild.wrangler locally, I get this error when publishing the JavaScript bundle via the API.addEventListener, or is there something else to fix this?https://yourwebsite.com/cdn-cgi/tracecolo=FOOesbuildaddEventListener"message": "No event handlers were registered. This script does nothing.\n"export interface Env {
executionId: string
}
export default {
async fetch(
request: Request,
env: Env,
ctx: ExecutionContext
): Promise<Response> {
return new Response(`Sample ${request.method}!
${JSON.stringify(env, null, 2)}
${JSON.stringify(ctx, null, 2)}
`)
},
}addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request));
})