feat: Add necessary files for PWA (#347)

* feat: PWA Implementation

* feat: PWA Implementation. fix comments

* feat: PWA Implementation. fix comments

Co-authored-by: Viacheslav Bondar <bondarslavik@gmail.com>
This commit is contained in:
BondarSlavik
2022-12-04 22:11:26 +02:00
committed by GitHub
parent 9fc8374a4d
commit 9e46e3972d
11 changed files with 59 additions and 4 deletions

24
web/static/manifest.json Normal file
View File

@ -0,0 +1,24 @@
{
"id": "gatus",
"name": "Gatus",
"short_name": "Gatus",
"description": "Gatus is an advanced automated status page that lets you monitor your applications and configure alerts to notify you if there's an issue",
"lang": "en",
"scope": "/",
"start_url": "/",
"theme_color": "#f7f9fb",
"background_color": "#f7f9fb",
"display": "standalone",
"icons": [
{
"src": "/logo-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/logo-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}