From f334a3b43cc5fe35c4a7955a9527d8cd354f7777 Mon Sep 17 00:00:00 2001 From: Isaac Hatton Date: Tue, 24 Jun 2025 02:05:53 +0100 Subject: [PATCH] Add PWA functionality (#1) * Add PWA manifest * Group with other link tags and remove self-closing Co-authored-by: Jon Koops --------- Co-authored-by: Jon Koops --- index.html | 1 + manifest.json | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 manifest.json diff --git a/index.html b/index.html index 5e1d20b..8f131f3 100644 --- a/index.html +++ b/index.html @@ -22,6 +22,7 @@ + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..d1156ef --- /dev/null +++ b/manifest.json @@ -0,0 +1,13 @@ +{ + "name": "LEGO® Island", + "icons": [ + { + "src": "favicon.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": "/", + "display": "standalone", + "theme_color": "#000000" +} \ No newline at end of file