weatherwand/capacitor.config.ts
2023-07-21 00:45:06 +02:00

13 lines
228 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.example.app',
appName: 'WeatherWand',
webDir: 'build',
server: {
androidScheme: 'https'
}
};
export default config;