Skip to content

Commit 23c711f

Browse files
committed
fix: correct favicon route to use specific file extension
1 parent 915e2a0 commit 23c711f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export async function startServer({
7676

7777
// Serve static assets from web dir relative to this file
7878
app.use("/assets/*", serveStatic({ root: WEB_ROOT }));
79-
app.use("/favicon*", serveStatic({ root: WEB_ROOT }));
79+
app.use("/favicon.ico", serveStatic({ root: WEB_ROOT }));
8080
app.use("/prove.png", serveStatic({ root: WEB_ROOT }));
8181

8282
// SPA fallback — all non-API routes return index.html

0 commit comments

Comments
 (0)