I have a web application built in Visual Studio (C#) and I'm trying to turn it into/make it a PWA (progressive web app). I have created a manifest json file :
{
{
"dir": "ltr",
"lang": "en",
"name": "OSU Project Manager",
"short_name": "Project Manager",
"scope": "/TSList.aspx",
"display": "standalone",
"start_url": "https://gammaprojectmanager.azurewebsites.net/TSList.aspx",
"theme_color": "#FFE1C4",
"description": "Time sheet and Clock In/Out",
"orientation": "portrait-primary",
"background_color": "#FFE9D2",
"icons": [
{
"sizes": "128x128",
"src": "/image/icon-128x128.png",
"type": "image"
}
],
"screenshots": [],
"generated": "true"
}
}
However, when I run the web app and inspect the page, I get these errors: error display
Here is the link that I created to link manifest to master page:
<link href="manifest.webmanifest2" rel="manifest" />
The service worker files work, I'm just having trouble with the manifest file.