Whenever I try to launch my app, the splash screen doesn't show up properly. Instead, I only see a white screen. I attempted to fix this issue by modifying the Next Metadata object multiple times and rebuilding the PWA app with no success.
appleWebApp: {
title: `Apple ${APP_DEFAULT_TITLE}`,
capable: true,
statusBarStyle: "black-translucent",
startupImage: "/splash_screens/icon.png"
}
Below is the beginning of my manifest.json:
"id": "/",
"name": "Instamint",
"theme_color": "#FFFFFF",
"background_color": "#FFFFFF",
"start_url": "/",
"display": "standalone",
"orientation": "portrait"