Skip to content

Instantly share code, notes, and snippets.

@jsanta
Created January 1, 2019 18:45
Show Gist options
  • Select an option

  • Save jsanta/0be35b6f8ad1e058cf570cef8cae8264 to your computer and use it in GitHub Desktop.

Select an option

Save jsanta/0be35b6f8ad1e058cf570cef8cae8264 to your computer and use it in GitHub Desktop.
Sample PWA manifest.json file
{
"name": "Ionic",
"short_name": "Ionic",
"start_url": "index.html",
"display": "standalone",
"icons": [{
"src": "assets/imgs/logo-512x512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "assets/imgs/logo-192x192.png",
"sizes": "192x192",
"type": "image/png"
}],
"background_color": "#4e8ef7",
"theme_color": "#4e8ef7"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment