feat: Add multiple favicon sizes, Apple touch icon, and web app manifest for improved PWA support.

This commit is contained in:
xds
2026-02-09 13:45:22 +03:00
parent 27337e0ccf
commit 70e96eb503
8 changed files with 29 additions and 1 deletions

21
public/site.webmanifest Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "MyWebSite",
"short_name": "MySite",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}