fix: favicon for safari

This commit is contained in:
Julien Calixte
2026-02-27 11:25:52 +01:00
parent 116a01575b
commit 7a6b671320
2 changed files with 7 additions and 3 deletions

View File

@@ -10,8 +10,12 @@
content="Remanso for displaying & sharing personal notes"
/>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<link rel="mask-icon" href="/masked-icon.svg" color="#FFFFFF" />
<link
rel="apple-touch-icon"
href="/apple-touch-icon-180x180.png"
sizes="180x180"
/>
<link rel="mask-icon" href="/masked-icon.png" color="#ffffff" />
<meta name="theme-color" content="#2C3A47" />
<link
rel="stylesheet"

View File

@@ -3,7 +3,7 @@ import path from "path"
import { defineConfig, type UserConfigExport } from "vite"
import { VitePWA } from "vite-plugin-pwa"
const mainColor = "#ffffff"
const mainColor = "#2C3A47"
export default defineConfig(({ command }) => {
const config: UserConfigExport = {