mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-17 06:14:21 +01:00
14 lines
279 B
TypeScript
14 lines
279 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.mutinywallet.mutinywallet',
|
|
backgroundColor: "171717",
|
|
appName: 'Mutiny Wallet',
|
|
webDir: 'dist/public',
|
|
server: {
|
|
androidScheme: 'https'
|
|
}
|
|
};
|
|
|
|
export default config;
|