How to remove Splash Screen in Ionic 6

Hi, I’m using Ionic 6 and Capacitor to build my first app in this framework. Any idea how to remove Splash Screen?

I tried to edit capacitor.config.ts:

import { CapacitorConfig } from '@capacitor/cli';

const config: CapacitorConfig = {

  appId: 'io.ionic.starter',

  appName: 'Król Wód',

  webDir: 'www',

  bundledWebRuntime: false,

  plugins: {

    SplashScreen: {

      launchShowDuration: 0,

      backgroundColor: '#ffffffff',

      launchAutoHide: true,

      androidSplashResourceName: 'launch_splash',

    }

  }

};

export default config;

But there is no changes.

Any ideas how to do it?

remove plugin from package.json file and any trace of it in other files.

Did you install @capacitor/splash-screen native plugin in your ionic app

Remove this from capacitor.config.ts

uninstall any splashscreen plugin