mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2026-06-18 19:49:31 +00:00
31 lines
647 B
TypeScript
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;
|