Files
seedit/capacitor.config.ts

28 lines
496 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'seedit.android',
appName: 'seedit',
webDir: 'build',
plugins: {
CapacitorHttp: {
enabled: true,
},
FileUploader: {
enabled: true,
},
StatusBar: {
style: 'Dark',
backgroundColor: '#000000',
overlay: false,
},
EdgeToEdge: {
backgroundColor: '#000000',
},
},
server: {
androidScheme: 'https'
}
};
export default config;