From 302e13462cb61a30a17479872965ae7841f6654c Mon Sep 17 00:00:00 2001 From: Bhasher Date: Tue, 31 Oct 2023 16:38:20 +0100 Subject: [PATCH] Standalone PWA --- webapp/html-templates/page.ejs | 2 ++ webapp/static/manifest.json | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 webapp/static/manifest.json diff --git a/webapp/html-templates/page.ejs b/webapp/html-templates/page.ejs index 28b48991b..617d0913c 100644 --- a/webapp/html-templates/page.ejs +++ b/webapp/html-templates/page.ejs @@ -4,6 +4,8 @@ + + <%= htmlWebpackPlugin.options.title %> diff --git a/webapp/static/manifest.json b/webapp/static/manifest.json new file mode 100644 index 000000000..61ba77b10 --- /dev/null +++ b/webapp/static/manifest.json @@ -0,0 +1,10 @@ +{ + "name": "Focalboard", + "display": "standalone", + "icons": [ + { + "src": "/static/favicon.svg", + "sizes": "any" + } + ] +}