Files
HKSingleParty/99_references/cf-identity-wallet-main/capacitor.config.ts
2025-05-28 09:55:51 +08:00

32 lines
670 B
TypeScript

import { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "org.cardanofoundation.idw",
appName: "ID Wallet",
webDir: "build",
bundledWebRuntime: false,
android: {
webContentsDebuggingEnabled: true,
},
ios: {
webContentsDebuggingEnabled: true,
},
plugins: {
CapacitorSQLite: {
"iosDatabaseLocation": "Library/IDWalletDatabase"
},
SplashScreen: {
launchShowDuration: 3000,
launchAutoHide: true,
launchFadeOutDuration: 1000,
backgroundColor: "#92FFC0"
},
PrivacyScreen: {
enable: false,
imageName: "Splashscreen",
}
}
};
export default config;