Skip to content

Instantly share code, notes, and snippets.

@amitsingh-007
Created July 11, 2021 07:33
Show Gist options
  • Save amitsingh-007/b13e5ae5b91fde13c0b8d9d2606f63fb to your computer and use it in GitHub Desktop.
Save amitsingh-007/b13e5ae5b91fde13c0b8d9d2606f63fb to your computer and use it in GitHub Desktop.
PWA manifest.json File
{
"short_name": "React Boilerplate App",
"name": "React Boilerplate App",
"description": "A PWA boilerplate/reference application in React",
"icons": [
{
"src": "/vercel-icon-192x192.png",
"type": "image/png",
"sizes": "192x192",
"purpose": "any maskable"
},
{
"src": "/vercel-icon-152x152.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any maskable"
}
],
"start_url": "/",
"background_color": "#FFFFFF",
"display": "standalone",
"scope": "/",
"theme_color": "#6850ff",
"orientation": "portrait"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment