mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
26 lines
563 B
TypeScript
26 lines
563 B
TypeScript
|
|
// / <reference types="@capacitor/push-notifications" />
|
|
// / <reference types="@capacitor/splash-screen" />
|
|
|
|
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.capacitorjs.app.testapp',
|
|
appName: 'Gabinete Digital',
|
|
webDir: 'www',
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchAutoHide: false,
|
|
},
|
|
LocalNotifications: {
|
|
smallIcon: 'ic_launcher_round',
|
|
iconColor: '#CE0B7C',
|
|
},
|
|
PushNotifications: {
|
|
presentationOptions: ['alert', 'sound'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|