import type { CapacitorConfig } from "@capacitor/cli"; const config: CapacitorConfig = { appId: "fr.arthurbarre.anydrop", appName: "AnyDrop", webDir: "dist", server: { // The iOS app is a thin shell around the production PWA. The real value // vs. a web clip is the native Share Extension (see ios/App/AnyDropShare), // which lets users send photos/videos from the iOS Photos share sheet. url: "https://anydrop.arthurbarre.fr", cleartext: false, }, ios: { scheme: "AnyDrop", contentInset: "always", }, }; export default config;