From 984b5c483754089189de6ca0afb8008cd6b11b79 Mon Sep 17 00:00:00 2001 From: lgmarchi Date: Mon, 16 Dec 2024 15:49:23 -0300 Subject: [PATCH] feat(SplashScreen): Configure launch duration and auto-hide settings --- capacitor.config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/capacitor.config.ts b/capacitor.config.ts index eb71c5d75..5cb827470 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -4,6 +4,12 @@ const config: CapacitorConfig = { appId: "com.satellite.uplink.app", appName: "Uplink", webDir: "build", + plugins: { + SplashScreen: { + launchShowDuration: 5000, + launchAutoHide: true, + }, + }, } export default config