So the new or current naming convention for having a site manifest in a PWA is site.webmanifest
so I changed the manifest.json
that I had to this new naming convention. Updated the <link rel="manifest">
tag to point to the new name. It's in the same exact location, only thing that changed was the name.
I get two errors in dev tools console. First is 404 the site.webmanifest
is not found. The second is stating that there's an unexpected token in Line: 1, Column 1 within the site.webmanifest
so I'm stumped.
If I change the site.webmanifest
back to manifest.json
and update the <link>
tag from above, it works again. But site.webmanifest
does not.
Any ideas with what I'm not understanding?