summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components
diff options
context:
space:
mode:
authorRyan Vogel <[email protected]>2026-01-19 15:04:59 -0500
committerGitHub <[email protected]>2026-01-19 15:04:59 -0500
commit889c60d63b585a276080f20c40c2d73ff715ea94 (patch)
treeb550782e54a7138ab3d3039a5cff002c053c6211 /packages/ui/src/components
parentc47699536fe9742cf5aa37f2c51168abeb90cb8d (diff)
downloadopencode-889c60d63b585a276080f20c40c2d73ff715ea94.tar.gz
opencode-889c60d63b585a276080f20c40c2d73ff715ea94.zip
fix(web): rename favicons to v2 for cache busting (#9492)
Diffstat (limited to 'packages/ui/src/components')
-rw-r--r--packages/ui/src/components/favicon.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/ui/src/components/favicon.tsx b/packages/ui/src/components/favicon.tsx
index 3462384d4..abb0e1f78 100644
--- a/packages/ui/src/components/favicon.tsx
+++ b/packages/ui/src/components/favicon.tsx
@@ -3,9 +3,9 @@ import { Link, Meta } from "@solidjs/meta"
export const Favicon = () => {
return (
<>
- <Link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
- <Link rel="shortcut icon" href="/favicon.ico" />
- <Link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
+ <Link rel="icon" type="image/png" href="/favicon-96x96-v2.png" sizes="96x96" />
+ <Link rel="shortcut icon" href="/favicon-v2.ico" />
+ <Link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-v2.png" />
<Link rel="manifest" href="/site.webmanifest" />
<Meta name="apple-mobile-web-app-title" content="OpenCode" />
</>