Files
chat_web_app/llm-fe/capacitor.config.ts
T
westfarn b5d3154d20
Unit Tests / test (pull_request) Successful in 12s
Rename Android shell display name to Hesychia (#29)
Capacitor appName and Android string resources (plus docs) now show Hesychia
so the mobile shell matches the product rebrand when this wrap lands.
2026-07-26 18:33:14 -05:00

28 lines
653 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.aimloperations.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;