microbiomedata / nmdc-field-notes

Mobile app for metadata collection on the go
https://fieldnotes.microbiomedata.org/
Other
1 stars 0 forks source link

PWA is not installable and does not set theme color for address bar #120

Closed eecavanna closed 3 months ago

eecavanna commented 3 months ago

The PWA report generated by Lighthouse (in Chrome DevTools—screenshot below) lists these shortcomings:

image

eecavanna commented 3 months ago

The manifest.json file contains references to webp images at ../icons/*.webp. I don't know what that refers to. If the web app is deployed to example.com, the manifest.json file will be at example.com/manifest.json. In that case, ../ doesn't make sense to me. 🤷

eecavanna commented 3 months ago

The manifest.json file also uses the MIME type of image/png for images of file type webp, which I don't think is correct.

    {
      "src": "../icons/icon-48.webp",
      "type": "image/png",
      "sizes": "48x48",
      "purpose": "any maskable"
    },

Why was that done that way?