added shortcuts to manifest

This commit is contained in:
vabene1111
2021-01-10 10:27:50 +01:00
parent 8a73f018f0
commit db6fe4256f
2 changed files with 24 additions and 5 deletions

View File

@@ -17,5 +17,28 @@
"background_color": "#18BC9C",
"display": "standalone",
"scope": "/",
"theme_color": "#18BC9C"
"theme_color": "#18BC9C",
"shortcuts": [
{
"name": "Plan",
"short_name": "Plan",
"description": "View your meal Plan",
"url": "/plan",
"icons": [{ "src": "/static/manifest/icon-192.png", "sizes": "192x192" }]
},
{
"name": "Books",
"short_name": "Cookbooks",
"description": "View your cookbooks",
"url": "/books",
"icons": [{ "src": "/static/manifest/icon-192.png", "sizes": "192x192" }]
},
{
"name": "Shopping",
"short_name": "Shopping List",
"description": "View your shopping lists",
"url": "/list/shopping-list/",
"icons": [{ "src": "/static/manifest/icon-192.png", "sizes": "192x192" }]
}
]
}