aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-landing/ssr.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-landing/ssr.tsx')
-rw-r--r--packages/bun-landing/ssr.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-landing/ssr.tsx b/packages/bun-landing/ssr.tsx
index 4f531f2de..e62dc3c2d 100644
--- a/packages/bun-landing/ssr.tsx
+++ b/packages/bun-landing/ssr.tsx
@@ -6,7 +6,7 @@ import liveReload from "bun-livereload";
import { join } from "path";
async function fetch(req: Request) {
- if (req.url.endsWith("favicon.ico") || req.url.endsWith("robots.txt")) {
+ if (req.url.endsWith("robots.txt")) {
return new Response("", { status: 404 });
}