aboutsummaryrefslogtreecommitdiff
path: root/static/manifest.json
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2019-02-03 06:33:15 -0800
committerChristine Dodrill <me@christine.website>2019-02-03 06:33:15 -0800
commitbfb5327e33666244010407841f4f9fdf823a5fb2 (patch)
treee62c9f1a95a0802adc16e1bc2dfb0b8663ff2f49 /static/manifest.json
parent29808311804c5de8d6442414e32c43c091bc0fdf (diff)
downloadxesite-bfb5327e33666244010407841f4f9fdf823a5fb2.tar.xz
xesite-bfb5327e33666244010407841f4f9fdf823a5fb2.zip
PWA: Chrome detection fixes
Diffstat (limited to 'static/manifest.json')
-rw-r--r--static/manifest.json70
1 files changed, 55 insertions, 15 deletions
diff --git a/static/manifest.json b/static/manifest.json
index 958fece..f529a86 100644
--- a/static/manifest.json
+++ b/static/manifest.json
@@ -1,17 +1,57 @@
{
- "name": "Christine Dodrill",
- "short_name": "Christine",
- "theme_color": "#ffcbe4",
- "background_color": "#fa99ca",
- "display": "standalone",
- "scope": "/",
- "start_url": "https://christine.website/",
- "description": "Blog and Resume for Christine Dodrill",
- "orientation": "any",
- "icons": [
- {
- "src": "https://christine.website/static/img/avatar.png",
- "sizes": "1024x1024"
- }
- ]
+ "name": "Christine Dodrill",
+ "short_name": "Christine",
+ "theme_color": "#ffcbe4",
+ "background_color": "#fa99ca",
+ "display": "standalone",
+ "scope": "/",
+ "start_url": "https://christine.website/",
+ "description": "Blog and Resume for Christine Dodrill",
+ "orientation": "any",
+ "icons": [
+ {
+ "src": "/static/img/avatar.png",
+ "sizes": "1024x1024"
+ },
+ {
+ "src": "/static/favicon/android-icon-36x36.png",
+ "sizes": "36x36",
+ "type": "image/png",
+ "density": "0.75"
+ },
+ {
+ "src": "/static/favicon/android-icon-48x48.png",
+ "sizes": "48x48",
+ "type": "image/png",
+ "density": "1.0"
+ },
+ {
+ "src": "/static/favicon/android-icon-72x72.png",
+ "sizes": "72x72",
+ "type": "image/png",
+ "density": "1.5"
+ },
+ {
+ "src": "/static/favicon/android-icon-96x96.png",
+ "sizes": "96x96",
+ "type": "image/png",
+ "density": "2.0"
+ },
+ {
+ "src": "/static/favicon/android-icon-144x144.png",
+ "sizes": "144x144",
+ "type": "image/png",
+ "density": "3.0"
+ },
+ {
+ "src": "/static/favicon/android-icon-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "density": "4.0"
+ },
+ {
+ "src": "/static/favicon/android-launchericon-512-512.png",
+ "sizes": "512x512"
+ },
+ ]
}