aboutsummaryrefslogtreecommitdiffstats
path: root/client/manifest.json
diff options
context:
space:
mode:
authorGrégory Paul <paulgreg@gmail.com>2019-03-04 20:55:07 +0100
committerGrégory Paul <paulgreg@gmail.com>2019-03-04 20:55:07 +0100
commite55b3e2a3d5d0ccd59491e4685ed8be389e23e39 (patch)
tree216126bcd0a1f0b1e11aa9bfcdfa0d5d6c2ba3fe /client/manifest.json
parentMinor bug fix due to lib change (diff)
downloadhackchat-e55b3e2a3d5d0ccd59491e4685ed8be389e23e39.tar.gz
hackchat-e55b3e2a3d5d0ccd59491e4685ed8be389e23e39.zip
Adding manifest.json (basic PWA support)
Diffstat (limited to '')
-rw-r--r--client/manifest.json40
1 files changed, 40 insertions, 0 deletions
diff --git a/client/manifest.json b/client/manifest.json
new file mode 100644
index 0000000..7b66c9e
--- /dev/null
+++ b/client/manifest.json
@@ -0,0 +1,40 @@
+{
+ "short_name": "HC",
+ "name": "Hack-Chat",
+ "icons": [
+ {
+ "src": "imgs/android-icon-36x36.png",
+ "sizes": "36x36",
+ "type": "image/png"
+ },
+ {
+ "src": "imgs/android-icon-48x48.png",
+ "sizes": "48x48",
+ "type": "image/png"
+ },
+ {
+ "src": "imgs/android-icon-72x72.png",
+ "sizes": "72x72",
+ "type": "image/png"
+ },
+ {
+ "src": "imgs/android-icon-96x96.png",
+ "sizes": "96x96",
+ "type": "image/png"
+ },
+ {
+ "src": "imgs/android-icon-144x144.png",
+ "sizes": "144x144",
+ "type": "image/png"
+ },
+ {
+ "src": "imgs/android-icon-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ }
+ ],
+ "start_url": "./",
+ "display": "minimal-ui",
+ "theme_color": "#a6a28c",
+ "background_color": "#ffffff"
+}