mirror of
https://github.com/immich-app/immich.git
synced 2025-03-01 15:11:21 +01:00
18 lines
444 B
TypeScript
18 lines
444 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'org.futo.immich',
|
|
appName: 'Immich',
|
|
webDir: 'build',
|
|
|
|
server: {
|
|
url: 'http://192.168.10.242:2283',
|
|
// hostname: '192.168.10.242',
|
|
androidScheme: 'http',
|
|
cleartext: true,
|
|
allowNavigation: ['http://192.168.10.242:2283/api/*', 'http://localhost/*', 'https://localhost/*'],
|
|
},
|
|
plugins: {},
|
|
};
|
|
|
|
export default config;
|