Skip to content

Instantly share code, notes, and snippets.

@YajanaRao
Last active August 29, 2020 17:08
Show Gist options
  • Save YajanaRao/41a27b110007e453ac32aaf91638ddc6 to your computer and use it in GitHub Desktop.
Save YajanaRao/41a27b110007e453ac32aaf91638ddc6 to your computer and use it in GitHub Desktop.
Create React App manifest json file
{
"short_name": "RN - web",
"name": "React Native On Web",
"description": "A react native on web application",
"icons": [
{
"src": "/images/icons-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/images/icons-512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "/?source=pwa",
"background_color": "#3367D6",
"display": "standalone",
"scope": "/",
"theme_color": "#3367D6"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment