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", // We handle safe-areas in CSS via env(safe-area-inset-*). Letting the // webview add its own inset on top would double-up the padding. contentInset: "never", }, }; export default config;