1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-04 02:46:47 +01:00
immich/web/capacitor.config.ts

19 lines
444 B
TypeScript
Raw Normal View History

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;