Files
5chan/capacitor.config.ts
T

28 lines
499 B
TypeScript
Raw Normal View History

2024-02-27 17:58:08 +01:00
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'plebchan.android',
appName: 'plebchan',
webDir: 'build',
2024-10-13 17:51:54 +02:00
plugins: {
CapacitorHttp: {
enabled: true,
2024-10-13 17:51:54 +02:00
},
FileUploader: {
enabled: true
},
StatusBar: {
style: 'Dark',
backgroundColor: '#000000',
overlay: false,
},
EdgeToEdge: {
backgroundColor: '#000000',
},
2024-10-13 17:51:54 +02:00
},
server: {
androidScheme: 'https'
}
2024-02-27 17:58:08 +01:00
};
export default config;