You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
559 B
25 lines
559 B
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.timesafari.dailynotification.iostest',
|
|
appName: 'Daily Notification iOS Test',
|
|
webDir: 'dist',
|
|
server: {
|
|
iosScheme: 'capacitor'
|
|
},
|
|
plugins: {
|
|
DailyNotification: {
|
|
storage: 'shared',
|
|
ttlSeconds: 1800,
|
|
prefetchLeadMinutes: 15,
|
|
enableETagSupport: true,
|
|
enableErrorHandling: true,
|
|
enablePerformanceOptimization: true
|
|
}
|
|
},
|
|
ios: {
|
|
scheme: 'Daily Notification iOS Test'
|
|
}
|
|
};
|
|
|
|
export default config;
|
|
|