Spaces:
Sleeping
Sleeping
| import type { CapacitorConfig } from '@capacitor/cli'; | |
| const config: CapacitorConfig = { | |
| appId: 'com.sspl.app', | |
| appName: 'pm-tool', | |
| webDir: 'dist', | |
| server: { | |
| androidScheme: 'https', | |
| allowNavigation: [ | |
| '*.synthesys.in', // Allow your domain | |
| '*' // Allow all during development | |
| ], | |
| cleartext: true, | |
| hostname: 'localhost', | |
| url: 'http://172.16.16.22:8080', | |
| }, | |
| android: { | |
| allowMixedContent: true, // Allow HTTP requests in HTTPS context | |
| captureInput: true, | |
| webContentsDebuggingEnabled: true // Enable remote debugging | |
| }, | |
| ios: { | |
| limitsNavigationsToAppBoundDomains: false | |
| } | |
| }; | |
| export default config; | |