weatherwand/capacitor.config.ts

13 lines
228 B
TypeScript
Raw Permalink Normal View History

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