Files

26 lines
563 B
TypeScript
Raw Permalink Normal View History

2023-10-25 14:44:33 +01:00
2021-11-29 15:48:35 +01:00
// / <reference types="@capacitor/push-notifications" />
// / <reference types="@capacitor/splash-screen" />
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.capacitorjs.app.testapp',
2023-10-09 14:15:21 +01:00
appName: 'Gabinete Digital',
webDir: 'www',
2021-11-29 15:48:35 +01:00
plugins: {
SplashScreen: {
launchAutoHide: false,
},
LocalNotifications: {
smallIcon: 'ic_launcher_round',
2021-11-29 15:48:35 +01:00
iconColor: '#CE0B7C',
},
PushNotifications: {
presentationOptions: ['alert', 'sound'],
},
},
};
export default config;