@italiancoders wrote:
Ionic version:
Ionic CLI : 5.4.4
Ionic Framework : @ionic/angular 4.11.2
@angular-devkit/build-angular : 0.803.2
@angular-devkit/schematics : 8.3.2
@angular/cli : 8.1.3
@ionic/angular-toolkit : 2.1.1Current behavior:
I’m using my ionic code for both browser (as a normal website, not wpa) and mobile apps. On browser I would like to disable the splashscreen because it is a losing of time on browser and I dont like it on desktop.
I tried a lot of solutions but none works.Expected behavior:
Not showing the splashscreen on browser.
Related code:
I tried adding this to the config.xml
<preference name="SplashMaintainAspectRatio" value="true" /> <preference name="FadeSplashScreenDuration" value="0" /> <preference name="SplashShowOnlyFirstTime" value="false" /> <preference name="SplashScreenDelay" value="0" /> <preference name="SplashScreen" value="none" /> <platform name="browser"> <preference name="ShowSplashScreen" value="false" /> </platform>They are totally ignored.
Posts: 1
Participants: 1