feat: added PWA support

This commit is contained in:
2026-03-07 15:48:27 +01:00
parent acfbe71baa
commit fc83bab9f7
8 changed files with 150 additions and 1 deletions

23
static/manifest.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "Votify Web",
"short_name": "Votify",
"description": "Music download manager",
"start_url": "/",
"display": "standalone",
"background_color": "#121212",
"theme_color": "#1db954",
"icons": [
{
"src": "/static/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/static/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
]
}