Files
flipper/desktop/static/manifest.template.json
Lorenzo Blasa a165d37ab3 Grey icon for PWA
Summary:
Right now, both Launcher and PWA share the same icon.

As to make it easier to identify which one is which, PWA will have a greyed icon instead.

Reviewed By: antonk52

Differential Revision: D47436998

fbshipit-source-id: 69d4d273c35e327263fbbf02d4ac7a005013f1d9
2023-07-13 07:41:44 -07:00

19 lines
516 B
JSON

{
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
"name": "Flipper",
"description": "Flipper is a platform for debugging iOS, Android and React Native apps",
"short_name": "Flipper",
"start_url": "index.web.html",
"display": "standalone",
"background_color": "#fff",
"theme_color": "#722ed1",
"orientation": "portrait-primary",
"icons": [
{
"src": "/icon_grey.png",
"type": "image/png",
"sizes": "256x256"
}
]
}