Skip to content

Instantly share code, notes, and snippets.

@irvingvjuarez
Created June 10, 2022 17:32
Show Gist options
  • Save irvingvjuarez/218458ea6de5fd815286dfdba405aa85 to your computer and use it in GitHub Desktop.
Save irvingvjuarez/218458ea6de5fd815286dfdba405aa85 to your computer and use it in GitHub Desktop.
PWA Web Manifest
{
"short_name": "React App",
"name": "Create React App", //Might be a larger name
"icons": [
{
"src": "icon192.png",
"sizes": "192x192",
"type": "image/png" //png | jpg | svg
},
{
"src": "icon512.png",
"sizes": "512x512",
"type": "image/png" //png | jpg | svg
},
{
"src": "icon512.png",
"sizes": "512x512",
"type": "image/png", //png | jpg | svg
"purpose": "any maskable"
}
],
"start_url": "./index.html",
"display": "standalone",
"scope": "/",
"related_applications": [],
"prefer_related_applications": false,
"theme_color": "#fff", //color to show in the navbar
"background_color": "#fff"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment