fix: PWA related fixes and mainfest added

This commit is contained in:
sriram veeraghanta 2024-08-01 21:08:57 +05:30
parent c89fe9a313
commit 8924e303da
11 changed files with 68 additions and 19 deletions

27
web/public/manifest.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "Plane",
"shot_name": "Plane",
"icons": [
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#FFFFFF",
"background_color": "#FFFFFF",
"start_url": "/",
"display": "standalone",
"orientation": "portrait"
}