mirror of
https://github.com/Qortal/qortal-mobile.git
synced 2025-03-19 05:55:00 +00:00
16 lines
294 B
TypeScript
16 lines
294 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.example.app',
|
|
appName: 'Qortal ',
|
|
webDir: 'dist',
|
|
"plugins": {
|
|
"LocalNotifications": {
|
|
"smallIcon": "qort",
|
|
"iconColor": "#09b6e8"
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|