From 983d66c197fc0e9c0a1f51993967d09e82143be9 Mon Sep 17 00:00:00 2001 From: smilerz Date: Thu, 6 Jan 2022 15:11:24 -0600 Subject: [PATCH] change manifest paths to be relative --- cookbook/templates/manifest.json | 92 ++++++++++++++++---------------- 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/cookbook/templates/manifest.json b/cookbook/templates/manifest.json index 1df56f2d9..0cec81bef 100644 --- a/cookbook/templates/manifest.json +++ b/cookbook/templates/manifest.json @@ -1,48 +1,48 @@ { - "name": "Tandoor Recipes", - "short_name" : "Tandoor", - "description": "Application to manage, tag and search recipes.", - "icons": [ - { - "src": "/static/assets/logo_color144.png", - "type": "image/png", - "sizes": "144x144" - }, - { - "src": "/static/assets/logo_color512.png", - "type": "image/png", - "sizes": "512x512" - } - ], - "start_url": "/search", - "background_color": "#ffcb76", - "display": "standalone", - "scope": "/", - "theme_color": "#ffcb76", - "shortcuts": [ - { - "name": "Plan", - "short_name": "Plan", - "description": "View your meal Plan", - "url": "/plan" - }, - { - "name": "Books", - "short_name": "Cookbooks", - "description": "View your cookbooks", - "url": "/books" - }, - { - "name": "Shopping", - "short_name": "Shopping", - "description": "View your shopping lists", - "url": "/list/shopping-list/" - }, - { - "name": "Latest Shopping List", - "short_name": "Shopping List", - "description": "View the latest shopping list", - "url": "/shopping/latest/" - } - ] + "name": "Tandoor Recipes", + "short_name": "Tandoor", + "description": "Application to manage, tag and search recipes.", + "icons": [ + { + "src": "/static/assets/logo_color144.png", + "type": "image/png", + "sizes": "144x144" + }, + { + "src": "/static/assets/logo_color512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": "./search", + "background_color": "#ffcb76", + "display": "standalone", + "scope": ".", + "theme_color": "#ffcb76", + "shortcuts": [ + { + "name": "Plan", + "short_name": "Plan", + "description": "View your meal Plan", + "url": "./plan" + }, + { + "name": "Books", + "short_name": "Cookbooks", + "description": "View your cookbooks", + "url": "./books" + }, + { + "name": "Shopping", + "short_name": "Shopping", + "description": "View your shopping lists", + "url": "./list/shopping-list/" + }, + { + "name": "Latest Shopping List", + "short_name": "Shopping List", + "description": "View the latest shopping list", + "url": "./shopping/latest/" + } + ] }