Files
seedit/capacitor.config.ts
Tom (plebeius.eth) dc43aeb993 feat(submit page): add media file upload
On desktop or android, the user can drop or select a media file in the upload box, which automatically uploads it to catbox.moe in the background, and pastes the direct link to the media in the url field.
2025-03-19 21:40:24 +01:00

21 lines
364 B
TypeScript

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