fix: upgrade favicons to 48x48 for Google Search visibility
Google requires favicons to be a multiple of 48px. The previous 32x32 favicon.png was being ignored, causing the generic globe icon in search results. Adds favicon.ico (multi-size), apple-touch-icon, and fixes og:image to use absolute URLs.
@@ -14,8 +14,12 @@ export default defineConfig({
|
||||
|
||||
head: [
|
||||
["meta", { name: "theme-color", content: "#3b82f6" }],
|
||||
["link", { rel: "icon", type: "image/png", href: "/favicon.png" }],
|
||||
["link", { rel: "icon", type: "image/png", sizes: "48x48", href: "/favicon.png" }],
|
||||
["link", { rel: "icon", type: "image/x-icon", href: "/favicon.ico" }],
|
||||
["link", { rel: "apple-touch-icon", sizes: "180x180", href: "/apple-touch-icon.png" }],
|
||||
["link", { rel: "llms-txt", href: "/llms.txt" }],
|
||||
["meta", { property: "og:image", content: "https://docs.snapotter.com/logo.png" }],
|
||||
["meta", { property: "og:url", content: "https://docs.snapotter.com" }],
|
||||
],
|
||||
|
||||
vite: {
|
||||
|
||||
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 5.7 KiB |
@@ -6,12 +6,15 @@
|
||||
<title>SnapOtter</title>
|
||||
<meta name="description" content="Open-source, self-hosted image processing platform" />
|
||||
<meta name="theme-color" content="#3b82f6" />
|
||||
<link rel="icon" type="image/png" href="/favicon.png" />
|
||||
<link rel="icon" type="image/png" sizes="48x48" href="/favicon.png" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
<meta property="og:title" content="SnapOtter" />
|
||||
<meta property="og:description" content="Open-source, self-hosted image processing platform" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="/og-image.png" />
|
||||
<meta property="og:url" content="https://snapotter.com" />
|
||||
<meta property="og:image" content="https://snapotter.com/og-image.png" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
||||
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 5.7 KiB |