create-next-pwa
create-next-pwa copied to clipboard
Empty manifest.json
Minor issue:
manifest.json was empty
When I ran
npx create-next-pwa@latest --typescript --tailwind myapp
I pasted in the following:
{
"name": "MyApp",
"short_name": "MyApp",
"theme_color": "#ffffff",
"background_color": "#004740",
"display": "fullscreen",
"orientation": "any",
"scope": "/",
"start_url": "/",
"icons": [{
"src": "/icons/favicon.svg",
"sizes": "48x48 72x72 96x96 128x128 144x144 152x152 192x192 256x256 384x384 512x512",
"type": "image/svg+xml",
"purpose": "any"
}],
"splash_pages": null
}