- 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.
10 lines
192 B
TypeScript
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;
|