mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2026-04-27 21:49:23 +00:00
23 lines
415 B
TypeScript
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;
|