Files
Qortal-Hub/electron/capacitor.config.ts
2025-12-12 19:26:58 +02:00

23 lines
415 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig & {
electron?: {
trayIconAndMenuEnabled?: boolean;
};
} = {
appId: 'org.Qortal.Qortal-Hub',
appName: 'Qortal-Hub',
webDir: 'dist',
plugins: {
LocalNotifications: {
smallIcon: 'qort',
iconColor: '#09b6e8',
},
},
electron: {
trayIconAndMenuEnabled: true,
},
};
export default config;