I am trying to get the manifest.json file working for my web app. Unfortunately it is not working right. I am receiving the following error in the chrome devtools:
Line: 1, column: 1, Unexpected token.
I am pretty sure that the JSON is valid but it probably has something to do with the path in the html-head. What am I doing wrong here?
I am linkin it in my html like this:
<link rel="manifest" href="/manifest.json">
The manifest looks as following:
{
"short_name": "Tabbs Web App",
"name": "Tabbs Web App",
"description": "Tabbs is an digital booking service for the night life scenery",
"icons": [
{
"src": "favicon.png",
"sizes": "1024x1024",
"type": "image/png"
}
],
"start_url": "./index.html",
"display": "fullscreen",
"theme_color": "#F5C33E",
"background_color": "#ffffff"
}
This is my map structure:
Hopefully someone can find the issue! Cheers!