favicon.svg embeds @media (prefers-color-scheme: dark) so the DeepSeek mark turns white under a dark browser scheme; index.html and the install manifest gain a 32x32 PNG fallback (brand blue) for Safari, which cannot render SVG favicons. pwa-manifest.e2e.ts pins the PNG link, both manifest icons, and the dark media query.
23 lines
389 B
JSON
23 lines
389 B
JSON
{
|
|
"id": "/",
|
|
"name": "DeepSeek Harness",
|
|
"short_name": "DSH",
|
|
"start_url": "/",
|
|
"scope": "/",
|
|
"display": "fullscreen",
|
|
"icons": [
|
|
{
|
|
"src": "/favicon-32x32.png",
|
|
"sizes": "32x32",
|
|
"type": "image/png",
|
|
"purpose": "any"
|
|
},
|
|
{
|
|
"src": "/favicon.svg",
|
|
"sizes": "any",
|
|
"type": "image/svg+xml",
|
|
"purpose": "any"
|
|
}
|
|
]
|
|
}
|