closess #22
Unit Tests / test (pull_request) Successful in 11s

This commit is contained in:
2026-08-03 14:12:23 -05:00
parent 5a847b64cc
commit 5c70bb4b2d
74 changed files with 1011 additions and 56 deletions
+9
View File
@@ -6,11 +6,20 @@ const config: CapacitorConfig = {
webDir: 'build',
server: {
// Bundled assets; HashRouter (#24) handles deep links without a rewrite server.
// Android: https://localhost — iOS: capacitor://localhost (CORS trusted in chat_backend).
androidScheme: 'https',
iosScheme: 'capacitor',
},
android: {
allowMixedContent: false,
},
ios: {
// Prefer content-driven insets; CSS env(safe-area-inset-*) handles notch / home indicator.
contentInset: 'automatic',
// Keep WebView scroll on; rubber-band bounce disabled in AppDelegate after load.
scrollEnabled: true,
preferredContentMode: 'mobile',
},
plugins: {
SplashScreen: {
launchAutoHide: true,