mirror of
https://github.com/plebbit/seedit.git
synced 2026-04-19 22:58:14 -04:00
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.
21 lines
364 B
TypeScript
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; |