Files
5chan/capacitor.config.ts
T
2024-11-02 18:42:52 +01:00

21 lines
366 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'plebchan.android',
appName: 'plebchan',
webDir: 'build',
bundledWebRuntime: false,
plugins: {
CapacitorHttp: {
enabled: true,
},
FileUploader: {
enabled: true
}
},
server: {
androidScheme: 'https'
}
};
export default config;