From 9c94021ad119fd0d3bee9a466de4aa09ceefd8c6 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 30 May 2024 10:47:40 +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 4bb6bab..94ac4c2 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("a"); + if (url.pathname === "/x") return new Response("preview"); return new Response("404!"); }, })