22 lines
608 B
TypeScript
22 lines
608 B
TypeScript
import type { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "dev.nativevuerouter.messenger",
|
|
appName: "Native Vue Messenger",
|
|
webDir: "../demo/dist",
|
|
backgroundColor: "#0b0d12",
|
|
plugins: {
|
|
App: { disableBackButtonHandler: true },
|
|
SplashScreen: {
|
|
launchAutoHide: true,
|
|
backgroundColor: "#0b0d12",
|
|
androidScaleType: "CENTER_CROP",
|
|
},
|
|
StatusBar: { style: "DARK", backgroundColor: "#0b0d12" },
|
|
},
|
|
android: { backgroundColor: "#0b0d12" },
|
|
ios: { backgroundColor: "#0b0d12", contentInset: "never" },
|
|
};
|
|
|
|
export default config;
|