From 4a456af1a37e78e3f30212ed991cfdb0d1f5d20e Mon Sep 17 00:00:00 2001 From: Tilman Date: Sat, 2 Oct 2021 13:35:44 +0200 Subject: [PATCH] webmanifest --- src/main/resources/static/index.html | 6 ++++-- src/main/resources/static/manifest.webmanifest | 15 +++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 src/main/resources/static/manifest.webmanifest diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html index b632d33..acbb4d6 100644 --- a/src/main/resources/static/index.html +++ b/src/main/resources/static/index.html @@ -30,11 +30,13 @@ - + + + diff --git a/src/main/resources/static/manifest.webmanifest b/src/main/resources/static/manifest.webmanifest new file mode 100644 index 0000000..8a8b2c5 --- /dev/null +++ b/src/main/resources/static/manifest.webmanifest @@ -0,0 +1,15 @@ +{ + "background_color": "#50a7bd", + "description": "Ausgaben", + "display": "standalone", + "icons": [ + { + "src": "/public/icon-grey.png", + "sizes": "192x192", + "type": "image/png" + } + ], + "name": "Ausgaben", + "short_name": "Ausgaben", + "start_url": "/#/home" +} \ No newline at end of file