@arslaan/pwa
Version:
A simple CLI tool to scaffold and generate service worker and manifest files for PWAs using customizable route-based caching strategies.
21 lines (20 loc) • 409 B
text/typescript
export const manifestTemplate = `{
"name": "PWA App",
"short_name": "PWA",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#317EFB",
"icons": [
{
"src": "/icons/icon-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/icons/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}`;