import { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'seedit.android', appName: 'seedit', webDir: 'build', bundledWebRuntime: false, plugins: { CapacitorHttp: { enabled: true, }, FileUploader: { enabled: true, }, }, server: { androidScheme: 'https' } }; export default config;