From ac63aa026b41b36018be8684dfcab12d08ccac78 Mon Sep 17 00:00:00 2001 From: Charles Eckman Date: Sun, 29 Aug 2021 19:57:09 -0700 Subject: [PATCH] Add web app manifest --- index.html | 2 +- manifest.json | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 manifest.json diff --git a/index.html b/index.html index 964cb79..144b219 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ Reading List Admin - +

Some content would be nice.

diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..04d8e8e --- /dev/null +++ b/manifest.json @@ -0,0 +1,18 @@ +{ + "name": "Reading List", + "display": "standalone", + "scope": "/reading/admin", + "start_url": "", + "icons": [ + { + "src": "icon-192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "icon-512.png", + "type": "image/png", + "sizes": "512x512" + } + ] +} \ No newline at end of file