mirror of
https://github.com/immich-app/immich.git
synced 2024-12-29 15:11:58 +00:00
25 lines
548 B
TypeScript
25 lines
548 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: {
|
|
CapacitorCookies: {
|
|
enabled: true,
|
|
},
|
|
CapacitorHttp: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|