diff --git a/src/http.ts b/src/http.ts index 7389f31..5340e69 100644 --- a/src/http.ts +++ b/src/http.ts @@ -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" }, }); }); diff --git a/src/ui-app/index.html b/src/ui-app/index.html index 88d065f..acc19d0 100644 --- a/src/ui-app/index.html +++ b/src/ui-app/index.html @@ -4,7 +4,7 @@ - + Parseable MCP Server diff --git a/src/ui-app/public/favicon.ico b/src/ui-app/public/favicon.ico new file mode 100644 index 0000000..f2f69c9 Binary files /dev/null and b/src/ui-app/public/favicon.ico differ diff --git a/src/ui-app/public/favicon.svg b/src/ui-app/public/favicon.svg deleted file mode 100644 index 9f8c3d7..0000000 --- a/src/ui-app/public/favicon.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - -