13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
|
|
import type { CapacitorConfig } from '@capacitor/cli'
|
||
|
|
|
||
|
|
const config: CapacitorConfig = {
|
||
|
|
appId: 'com.appetito.app',
|
||
|
|
appName: 'Appetito',
|
||
|
|
webDir: 'dist',
|
||
|
|
android: {
|
||
|
|
allowMixedContent: true,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
|
||
|
|
export default config
|