next-pwa-pack
Version:
PWA cache provider for Next.js/React apps (service worker, manifest, offline page, SPA cache, offline)
39 lines (38 loc) • 817 B
JSON
{
"name": "My pwa app",
"short_name": "My pwa app",
"description": "My pwa app description",
"start_url": "/",
"id": "/",
"lang": "ru",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#000000",
"orientation": "portrait",
"icons": [
{
"src": "/icons/icon-16x16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "/icons/icon-32x32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"scope": "/",
"prefer_related_applications": false
}