From 97b8bac7470b31c6566664836b00a8a700d4969d Mon Sep 17 00:00:00 2001 From: Leonardo Segala Date: Sat, 2 Aug 2025 04:58:46 +0200 Subject: [PATCH] Add manifest.json --- frontend/static/manifest.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 frontend/static/manifest.json diff --git a/frontend/static/manifest.json b/frontend/static/manifest.json new file mode 100644 index 0000000..f042a95 --- /dev/null +++ b/frontend/static/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "Chillbox Music Player", + "short_name": "Chillbox", + "start_url": "/", + "display": "standalone", + "background_color": "#334155", + "theme_color": "#334155", + "orientation": "portrait-primary", + "icons": [ + { + "src": "/icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "/icon-192.png", + "sizes": "192x192", + "type": "image/png" + } + ] +}