2024-05-17 18:50:55 +02:00
|
|
|
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
|
|
|
|
const config: CapacitorConfig = {
|
|
|
|
appId: 'org.futo.immich',
|
|
|
|
appName: 'Immich',
|
|
|
|
webDir: 'build',
|
|
|
|
|
|
|
|
server: {
|
2024-05-21 10:05:05 +02:00
|
|
|
url: 'http://192.168.10.242:2283',
|
|
|
|
// hostname: '192.168.10.242',
|
2024-05-17 18:50:55 +02:00
|
|
|
androidScheme: 'http',
|
|
|
|
cleartext: true,
|
2024-05-21 10:05:05 +02:00
|
|
|
allowNavigation: ['http://192.168.10.242:2283/api/*', 'http://localhost/*', 'https://localhost/*'],
|
2024-05-17 18:50:55 +02:00
|
|
|
},
|
2024-05-21 10:05:05 +02:00
|
|
|
plugins: {},
|
2024-05-17 18:50:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|