Unit Tests / test (pull_request) Successful in 15s
Capacitor appName and Android string resources (plus docs) now show Hesychia so the mobile shell matches the product rebrand when this wrap lands.
28 lines
653 B
TypeScript
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;
|