mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
17 lines
359 B
TypeScript
17 lines
359 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.superproductivity.superproductivity',
|
|
appName: 'super-productivity',
|
|
webDir: 'dist/browser',
|
|
plugins: {
|
|
CapacitorHttp: {
|
|
enabled: true,
|
|
},
|
|
LocalNotifications: {
|
|
smallIcon: 'ic_stat_sp',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|