Files
qortal-mobile/capacitor.config.ts
2025-12-19 13:40:46 +02:00

31 lines
647 B
TypeScript

import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "com.github.Qortal.qortalMobile",
appName: "Qortal Go",
webDir: "dist",
server: {
androidScheme: "http",
},
plugins: {
LocalNotifications: {
smallIcon: "qort",
iconColor: "#ffffff",
},
SplashScreen: {
launchShowDuration: 3000,
backgroundColor: "#ffffff",
androidScaleType: "FIT_XY",
showSpinner: true,
androidSpinnerStyle: "large",
splashFullScreen: true,
splashImmersive: true,
},
CapacitorHttp: {
enabled: false,
},
},
};
export default config;