create-next-pwa icon indicating copy to clipboard operation
create-next-pwa copied to clipboard

Empty manifest.json

Open peteristhegreat opened this issue 3 years ago • 0 comments

Minor issue:

manifest.json was empty

When I ran

npx create-next-pwa@latest --typescript --tailwind myapp

I pasted in the following:

{
    "name": "MyApp",
    "short_name": "MyApp",
    "theme_color": "#ffffff",
    "background_color": "#004740",
    "display": "fullscreen",
    "orientation": "any",
    "scope": "/",
    "start_url": "/",
    "icons": [{
      "src": "/icons/favicon.svg",
      "sizes": "48x48 72x72 96x96 128x128 144x144 152x152 192x192 256x256 384x384 512x512",
      "type": "image/svg+xml",
      "purpose": "any"
    }],
    "splash_pages": null
  }

peteristhegreat avatar Sep 20 '22 22:09 peteristhegreat