aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/bun/http-file.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/bun/http-file.ts b/examples/bun/http-file.ts
index 1699e20e0..f2c0773e8 100644
--- a/examples/bun/http-file.ts
+++ b/examples/bun/http-file.ts
@@ -3,7 +3,6 @@ Bun.serve({
fetch(req) {
const url = new URL(req.url.substring(1), "file://" + import.meta.path);
const path = Bun.resolveSync(url.pathname, import.meta.path);
-
return new Response(Bun.file(path));
},