Last active
January 29, 2020 00:09
-
-
Save aarongustafson/b690ca1bf6d0310f51273e90782fb859 to your computer and use it in GitHub Desktop.
Working with multi-lingual manifest files
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
{ | |
"lang": "en-US", | |
"name": "Aaron Gustafson", | |
"short_name": "AaronG", | |
"scope": "/", | |
"display": "minimal-ui", | |
"start_url": "/", | |
"theme_color": "#27831B", | |
"description": "The online home and work of Aaron Gustafson.", | |
"orientation": "any", | |
"background_color": "#fffcf4", | |
"icons": [ | |
{ | |
"src": "/i/og-logo.webp", | |
"type": "image/webp", | |
"sizes": "800x600" | |
}, | |
{ | |
"src": "/i/og-logo.png", | |
"type": "image/png", | |
"sizes": "800x600" | |
}, | |
{ | |
"src": "/i/notification-icon.webp", | |
"type": "image/webp", | |
"sizes": "256x256" | |
}, | |
{ | |
"src": "/i/notification-icon.png", | |
"type": "image/png", | |
"sizes": "256x256" | |
}, | |
{ | |
"src": "/favicon.png", | |
"type": "image/png", | |
"sizes": "16x16" | |
} | |
] | |
} |
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
<link rel="manifest" hreflang="en" href="/manifest.en.json"> | |
<link rel="manifest" hreflang="es" href="/manifest.es.json"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment