mirror of
https://github.com/plebbit/seedit.git
synced 2026-02-15 00:11:10 -05:00
15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
import { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'seedit.android',
|
|
appName: 'seedit',
|
|
webDir: 'build',
|
|
bundledWebRuntime: false,
|
|
plugins: {
|
|
"CapacitorHttp": {
|
|
"enabled": true
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config; |