From 25fc510f6faf9d95744a4955dd420171ec5c172e Mon Sep 17 00:00:00 2001 From: Korbs Date: Sat, 30 Sep 2023 12:30:15 -0400 Subject: [PATCH] Add PWA support --- pwa/manifest.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pwa/manifest.json diff --git a/pwa/manifest.json b/pwa/manifest.json new file mode 100644 index 0000000..4ca4512 --- /dev/null +++ b/pwa/manifest.json @@ -0,0 +1,30 @@ +{ + "name": "PokeTube", + "short_name": "PokeTube", + "description": "Watch Videos - Anonymously", + "start_url": "/", + "display": "standalone", + "background_color": "#080808", + "theme_color": "#612153", + "icons": [ + { + "src": "/css/pt.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "screenshots": [ + { + "src": "/css/pwa-desktop.png", + "type": "image/png", + "sizes": "1695x1445", + "form_factor": "wide" + }, + { + "src": "/css/pwa-mobile.jpg", + "type": "image/jpg", + "sizes": "1080x2412", + "form_factor": "narrow" + } + ] + } \ No newline at end of file