/// require('dotenv').config(); const isDev = process.env.CAP_ENV === 'dev'; const config = { appId: "com.zenkanji.app", appName: "Zen Kanji", webDir: "dist", server: { androidScheme: isDev ? "http" : "https", cleartext: isDev }, plugins: { Keyboard: { resize: "body", style: "dark", resizeOnFullScreen: true }, SplashScreen: { launchShowDuration: 2000, backgroundColor: "#1e1e24", showSpinner: false } } }; console.log(`⚡️ Capacitor Config loaded for: ${isDev ? 'DEVELOPMENT (http)' : 'PRODUCTION (https)'}`); module.exports = config;