From f273769b0fd3e62a988bb10a8a93a4282a1e403c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 10 Jun 2024 10:45:44 +0200 Subject: [PATCH] Revert "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 94ac4c2..4bb6bab 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("preview"); + if (url.pathname === "/x") return new Response("a"); return new Response("404!"); }, })