"Hello World" sample worker returns ERR_NAME_NOT_RESOLVED

I'm trying out Workers for the first time and created one from the Hello World sample. When I try to access it, at https://plain-frog-b829.orb-389.workers.dev/, my browser displays ERR_NAME_NOT_RESOLVED. Here is the content of the Worker:
export default {
async fetch(request, env, ctx) {
return new Response('Hello World!');
},
};
export default {
async fetch(request, env, ctx) {
return new Response('Hello World!');
},
};
How can I get this Worker up and running? Is there a public/private toggle somewhere that I need to throw? Thanks in advance!
0 Replies
No replies yetBe the first to reply to this messageJoin

Did you find this page helpful?