NextJS13 -> PWA, and splash screen
Unanswered
Odorous house ant posted this in #help-forum
Odorous house antOP
I'm trying to get my splash screen working, and the mdn docs say that all a manifest.json needs in it to let iOS create the splash screen is:
However, i have those elements covered in my manifest.json:
just trying to understand what's missing so i get a nice splashscreen for my app on iOS
However, i have those elements covered in my manifest.json:
{
"id": "/",
"name": "Excercise Tracker",
"description": "Quick Utility to log exercise",
"short_name": "exTracker",
"theme_color": "#2196f3",
"background_color": "#ffffff",
"display": "standalone",
"orientation": "portrait",
"scope": "/",
"start_url": "/",
"icons": [
{
"src": "/icon.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any"
},
{
"src": "/portrait.png",
"sizes": "1170x2532",
"type": "image/png",
"purpose": "any"
}
],
"screenshots": [
{
"src": "./portrait.png",
"sizes": "1170x2532",
"type": "image/png"
}
]
}just trying to understand what's missing so i get a nice splashscreen for my app on iOS
1 Reply
Odorous house antOP
Ping