Files
5chan/capacitor.config.ts
T

29 lines
500 B
TypeScript
Raw Normal View History

2024-02-27 17:58:08 +01:00
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'fivechan.android',
2025-10-17 23:30:35 +02:00
appName: '5chan',
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;