- Remove references to non-existent PNG icon files in manifest - Use SVG icon for both 'any' and 'maskable' purposes - Add start_url and scope to manifest for proper PWA installation - Remove orientation restriction for better compatibility - Remove shortcuts that reference non-existent routes - Update vite.config.ts with proper PWA settings - Add devOptions to disable PWA in development - Separate 'any' and 'maskable' icon entries as required by spec - Increase container top padding to prevent hover clipping Build success: 44 entries precached (82.02 MB) Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
659 B
JSON
26 lines
659 B
JSON
{
|
|
"name": "IndeedHub - Decentralized Media Streaming",
|
|
"short_name": "IndeedHub",
|
|
"description": "Stream films and content on the decentralized web powered by Nostr and Bitcoin",
|
|
"start_url": "/",
|
|
"scope": "/",
|
|
"display": "standalone",
|
|
"background_color": "#0a0a0a",
|
|
"theme_color": "#0a0a0a",
|
|
"icons": [
|
|
{
|
|
"src": "/assets/images/app-icon.svg",
|
|
"sizes": "any",
|
|
"type": "image/svg+xml",
|
|
"purpose": "any"
|
|
},
|
|
{
|
|
"src": "/assets/images/app-icon.svg",
|
|
"sizes": "512x512",
|
|
"type": "image/svg+xml",
|
|
"purpose": "maskable"
|
|
}
|
|
],
|
|
"categories": ["entertainment", "video", "streaming"]
|
|
}
|