From da414dd867638c5eb99b674d8999383610fef90f Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 8 Nov 2023 12:51:20 +0100 Subject: [PATCH] PWA bringup --- index.html | 1 + public/manifest.json | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 public/manifest.json diff --git a/index.html b/index.html index e4359ed..c353813 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ +
diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..71adbc6 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,14 @@ +{ + "name": "honey", + "short_name": "honey", + "description": "Nice and sweet place for all your self-hosted services", + "start_url": "/", + "background_color": "#000", + "display": "standalone", + "icons": [ + { + "src": "img/icon.png", + "sizes": "192x192 256x256 512x512" + } + ] +}