Merge pull request #1252 from smilerz/sw_at_ScriptName

change manifest paths to be relative
This commit is contained in:
vabene1111
2022-01-07 15:39:49 +01:00
committed by GitHub

View File

@@ -1,48 +1,48 @@
{ {
"name": "Tandoor Recipes", "name": "Tandoor Recipes",
"short_name" : "Tandoor", "short_name": "Tandoor",
"description": "Application to manage, tag and search recipes.", "description": "Application to manage, tag and search recipes.",
"icons": [ "icons": [
{ {
"src": "/static/assets/logo_color144.png", "src": "/static/assets/logo_color144.png",
"type": "image/png", "type": "image/png",
"sizes": "144x144" "sizes": "144x144"
}, },
{ {
"src": "/static/assets/logo_color512.png", "src": "/static/assets/logo_color512.png",
"type": "image/png", "type": "image/png",
"sizes": "512x512" "sizes": "512x512"
} }
], ],
"start_url": "/search", "start_url": "./search",
"background_color": "#ffcb76", "background_color": "#ffcb76",
"display": "standalone", "display": "standalone",
"scope": "/", "scope": ".",
"theme_color": "#ffcb76", "theme_color": "#ffcb76",
"shortcuts": [ "shortcuts": [
{ {
"name": "Plan", "name": "Plan",
"short_name": "Plan", "short_name": "Plan",
"description": "View your meal Plan", "description": "View your meal Plan",
"url": "/plan" "url": "./plan"
}, },
{ {
"name": "Books", "name": "Books",
"short_name": "Cookbooks", "short_name": "Cookbooks",
"description": "View your cookbooks", "description": "View your cookbooks",
"url": "/books" "url": "./books"
}, },
{ {
"name": "Shopping", "name": "Shopping",
"short_name": "Shopping", "short_name": "Shopping",
"description": "View your shopping lists", "description": "View your shopping lists",
"url": "/list/shopping-list/" "url": "./list/shopping-list/"
}, },
{ {
"name": "Latest Shopping List", "name": "Latest Shopping List",
"short_name": "Shopping List", "short_name": "Shopping List",
"description": "View the latest shopping list", "description": "View the latest shopping list",
"url": "/shopping/latest/" "url": "./shopping/latest/"
} }
] ]
} }