Files
5chan/capacitor.config.ts
T

29 lines
501 B
TypeScript
Raw Permalink 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: {
2026-05-01 16:21:00 +07:00
enabled: false,
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;