qortal-mobile/capacitor.config.ts

16 lines
294 B
TypeScript
Raw Normal View History

2024-10-28 05:19:07 +02:00
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.example.app',
appName: 'Qortal ',
2024-10-31 08:56:21 +02:00
webDir: 'dist',
"plugins": {
"LocalNotifications": {
"smallIcon": "qort",
"iconColor": "#09b6e8"
}
}
2024-10-28 05:19:07 +02:00
};
export default config;