mirror of
https://github.com/open-webui/open-webui
synced 2025-03-16 02:17:33 +00:00
Merge pull request #4614 from sebdanielsson/pwa-maskable-icon
fix: Make PWA icon maskable
This commit is contained in:
commit
4dd404ac3b
@ -2264,7 +2264,20 @@ async def get_manifest_json():
|
|||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"background_color": "#343541",
|
"background_color": "#343541",
|
||||||
"orientation": "portrait-primary",
|
"orientation": "portrait-primary",
|
||||||
"icons": [{"src": "/static/logo.png", "type": "image/png", "sizes": "500x500"}],
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/static/logo.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "500x500",
|
||||||
|
"purpose": "any",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/static/logo.png",
|
||||||
|
"type": "image/png",
|
||||||
|
"sizes": "500x500",
|
||||||
|
"purpose": "maskable",
|
||||||
|
},
|
||||||
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user