Skip to content
This repository was archived by the owner on Mar 29, 2026. It is now read-only.

Commit 16fd090

Browse files
committed
refactor: icon
1 parent d49cbeb commit 16fd090

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

apps/server/src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ export class Server {
4747

4848
// Catch-all route to handle client-side routing
4949
this.app.get('*', (_req, res) => {
50-
res.sendFile(
51-
path.join(__dirname, '../../web/dist/index.html' + `?${Date.now()}`)
52-
);
50+
res.sendFile(path.join(__dirname, '../../web/dist/index.html'));
5351
});
5452
}
5553

apps/web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="UTF-8" />
6-
<link rel="icon" href="/favicon.ico">
6+
<link rel="icon" type="image/png" href="/logo.png">
77
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" sizes="180x180">
88
<link rel="mask-icon" href="/maskable-icon-512x512.png" color="#FFFFFF">
99
<meta name="description" content="24/7 Customer Support Powered by AI">

0 commit comments

Comments
 (0)