From a1b07d645c8198bb2a362d8bca08442cfed32c54 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 29 May 2024 14:40:50 +0200 Subject: [PATCH] Update index.ts --- bun/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bun/index.ts b/bun/index.ts index 5252a0e..976da03 100644 --- a/bun/index.ts +++ b/bun/index.ts @@ -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!"); }, })