web-dave / angular-pwa

0 stars 1 forks source link

Prepare to make it installable #2

Open web-dave opened 5 years ago

web-dave commented 5 years ago
web-dave commented 5 years ago

manifest.json

{
  "name": "confbuddy",
  "short_name": "buddy",
  "theme_color": "#c2185b",
  "background_color": "#424242",
  "display": "standalone",
  "scope": "/",
  "start_url": "/",
  "icons": [
    {
      "src": "assets/cb.png",
      "sizes": "400x400",
      "type": "image/png"
    }
  ]
}

Image must be a *.png square ninimum size of 144px

web-dave commented 5 years ago

index.html

  <link rel="manifest" href="manifest.json" />
  <meta name="theme-color" content="#c2185b" />
web-dave commented 5 years ago

Next