import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'com.quadjourney.secondbrain', appName: 'Second Brain', webDir: 'www', server: { // Live mode — loads from your deployed site url: 'https://dash.quadjourney.com', cleartext: false, }, ios: { contentInset: 'automatic', preferredContentMode: 'mobile', scheme: 'Second Brain', backgroundColor: '#09090b', }, plugins: { SplashScreen: { launchAutoHide: true, launchShowDuration: 1500, backgroundColor: '#09090b', showSpinner: false, }, StatusBar: { style: 'DARK', backgroundColor: '#09090b', }, Keyboard: { resize: 'body', resizeOnFullScreen: true, }, }, }; export default config;