From 2f000303f25d3cb52c76efcc299077050dcad731 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sat, 26 Jan 2019 20:19:47 +0300 Subject: [PATCH] Add PWA manifest to website (#1585) --- website/index.html | 1 + website/manifest.json | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 website/manifest.json diff --git a/website/index.html b/website/index.html index 0720f639f2..d34e8e8702 100644 --- a/website/index.html +++ b/website/index.html @@ -3,6 +3,7 @@ Deno + diff --git a/website/manifest.json b/website/manifest.json new file mode 100644 index 0000000000..67e8f1a0b3 --- /dev/null +++ b/website/manifest.json @@ -0,0 +1,13 @@ +{ + "dir": "ltr", + "lang": "en", + "name": "Deno", + "scope": "/", + "display": "browser", + "start_url": "/", + "short_name": "Deno", + "theme_color": "#F0F0F0", + "description": "A new way to JavaScript", + "orientation": "any", + "background_color": "#F0F0F0" +}