import type { CapacitorConfig } from '@capacitor/cli'; // Production server URL const SERVER_URL = 'https://app.logship.de'; const config: CapacitorConfig = { appId: 'com.logship.mobile', appName: 'LogShip Mobile', webDir: '.output/public', server: { // The app loads from your server - set SERVER_URL above or via environment variable url: `${SERVER_URL}/mobile`, cleartext: true // Allow HTTP for local development }, android: { allowMixedContent: true, // Allow HTTP content in HTTPS pages (for dev) initialFocus: false, buildOptions: { signingType: 'apksigner' } }, plugins: {} }; export default config;