Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ app.get("/assets/*", async (c) => {
});

// Vite copies public files to the build root, outside /assets.
app.get("/favicon.svg", async (c) => {
const filePath = join(UI_DIR, "favicon.svg");
app.get("/favicon.ico", async (c) => {
const filePath = join(UI_DIR, "favicon.ico");
if (!existsSync(filePath)) return c.notFound();
const buf = await readFile(filePath);
return new Response(buf, {
headers: { "Content-Type": "image/svg+xml" },
headers: { "Content-Type": "image/x-icon" },
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/ui-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Connect AI agents to Parseable logs, metrics, traces, and alerts with the Parseable MCP Server." />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>Parseable MCP Server</title>
</head>
<body>
Expand Down
Binary file added src/ui-app/public/favicon.ico
Binary file not shown.
8 changes: 0 additions & 8 deletions src/ui-app/public/favicon.svg

This file was deleted.

Loading