Generate a complete PWA manifest.json for installable web apps.
{
"start_url": "/",
"display": "standalone",
"orientation": "any",
"theme_color": "#6366f1",
"background_color": "#ffffff",
"lang": "en-US",
"scope": "/",
"icons": [
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable any"
}
]
}manifest.json in the root of your web project (e.g., public/manifest.json).<head> of your HTML:<link rel="manifest" href="/manifest.json">
icons array (e.g., /icons/icon-192x192.png).Generate a complete Web App Manifest (manifest.json) for your Progressive Web App. Configure app name, icons, display mode, theme colors, and all required fields to make your website installable.