Files
weather-app/capacitor.config.ts
theis.gaedigk 2633c07745 Add initial iOS project files including LaunchScreen and Main storyboards, Info.plist, and Podfile
- Created LaunchScreen.storyboard with a splash image.
- Created Main.storyboard with a bridge view controller.
- Added Info.plist with essential app configuration.
- Initialized Podfile for CocoaPods dependency management.
2025-08-03 03:23:21 +02:00

10 lines
192 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'de.the1s.weather',
appName: 'My OPM Weather',
webDir: 'dist'
};
export default config;