Update index.ts

This commit is contained in:
Andras Bacsai
2024-05-29 14:40:50 +02:00
committed by GitHub
parent d350e611ee
commit a1b07d645c

View File

@@ -6,7 +6,7 @@ Bun.serve({
if (url.pathname === "/") return new Response("Home page!");
if (url.pathname === "/blog") return new Response("Blog!");
if (url.pathname === "/about") return new Response("About!");
if (url.pathname === "/x") return new Response("x");
if (url.pathname === "/x") return new Response("y");
return new Response("404!");
},
})