iOS white screen issue, no console error

Hey guys!
I have an annoying problem. I built my app for ios with phonegap build in the cloud. When i start the app on my phone i can see the splash then the screen goes white. The console log is fully empty and my app stuck on src/index.html.

my config xml for splash if anyone think i have the problem with it:

<preference name="ScrollEnabled" value="false" />
    <preference name="webviewbounce" value="false" />
    <preference name="UIWebViewBounce" value="false" />
    <preference name="DisallowOverscroll" value="true" />
    <preference name="android-minSdkVersion" value="16" />
    <preference name="BackupWebStorage" value="none" />
    <preference name="SplashMaintainAspectRatio" value="true" />
    <preference name="FadeSplashScreenDuration" value="300" />
    <preference name="SplashShowOnlyFirstTime" value="false" />
    <preference name="SplashScreen" value="screen" />
    <preference name="SplashScreenDelay" value="20000" />
    <preference name="ShowSplashScreenSpinner" value="false" />
    <preference name="loadUrlTimeoutValue" value="700000" />

app component ts:

platform.ready().then(() => {
     
      statusBar.styleDefault();
      splashScreen.hide();
    });

I tried other demo ionic apps but same problem.

Add a few console.log to your app and see if something gets executed of those. Any errors loading files that are referenced from index.html?

What is your ionic info output?