Last active
August 29, 2020 17:08
-
-
Save YajanaRao/41a27b110007e453ac32aaf91638ddc6 to your computer and use it in GitHub Desktop.
Create React App manifest json file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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