pmtool / capacitor.config.ts
devarshia5's picture
Upload 487 files
d97b8f9 verified
Raw
History Blame Contribute Delete
710 Bytes
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;