You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/app/views/pwa/manifest.json.erb

26 lines
662 B

{
"name": "<%= Whitelabel.brand_name %>",
"short_name": "<%= Whitelabel.brand_short_name %>",
"id": "/",
"icons": [
{
"src": "<%= Whitelabel.favicon_svg %>",
"type": "image/svg+xml",
"sizes": "any"
},
{
"src": "<%= Whitelabel.apple_touch_icon %>",
"type": "image/png",
"sizes": "192x192"
}
],
"start_url": "/",
"display": "standalone",
"scope": "/",
"orientation": "any",
"description": "<%= Whitelabel.pwa_description %>",
"categories": ["productivity", "utilities"],
"theme_color": "<%= Whitelabel.pwa_theme_color %>",
"background_color": "<%= Whitelabel.pwa_background_color %>"
}