mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-16 16:25:53 +00:00
16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'org.Qortal.Qortal-Hub',
|
|
appName: 'Qortal-Hub',
|
|
webDir: 'dist',
|
|
"plugins": {
|
|
"LocalNotifications": {
|
|
"smallIcon": "qort",
|
|
"iconColor": "#09b6e8"
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|