Files
chat_web_app/llm-fe/capacitor.config.ts
T
westfarn 35dc4c584f
Unit Tests / test (pull_request) Successful in 25s
Rename Android application ID to ai.hesychia.chat (#67)
Align Capacitor appId, Gradle applicationId/namespace, MainActivity package, and docs with Hesychia branding.
2026-07-29 13:17:38 -05:00

28 lines
646 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'ai.hesychia.chat',
appName: 'Hesychia',
webDir: 'build',
server: {
// Bundled assets; HashRouter (#24) handles deep links without a rewrite server.
androidScheme: 'https',
},
android: {
allowMixedContent: false,
},
plugins: {
SplashScreen: {
launchAutoHide: true,
backgroundColor: '#0f172a',
showSpinner: false,
},
Keyboard: {
// StatusBar does not overlay the WebView; keep resizeOnFullScreen for notch devices.
resizeOnFullScreen: true,
},
},
};
export default config;