diff options
Diffstat (limited to 'app/views/pwa/manifest.json.erb')
-rw-r--r-- | app/views/pwa/manifest.json.erb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/views/pwa/manifest.json.erb b/app/views/pwa/manifest.json.erb new file mode 100644 index 0000000..7a1a68b --- /dev/null +++ b/app/views/pwa/manifest.json.erb @@ -0,0 +1,22 @@ +{ + "name": "Flacon", + "icons": [ + { + "src": "/icon.png", + "type": "image/png", + "sizes": "512x512" + }, + { + "src": "/icon.png", + "type": "image/png", + "sizes": "512x512", + "purpose": "maskable" + } + ], + "start_url": "/", + "display": "standalone", + "scope": "/", + "description": "Flacon.", + "theme_color": "red", + "background_color": "red" +} |