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?