first commit

This commit is contained in:
ryan
2026-02-06 14:22:35 +07:00
commit bd70440c71
185 changed files with 69518 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.careit.app',
appName: 'CareIt',
webDir: 'out',
server: {
url: process.env.NEXT_PUBLIC_API_URL || "http://10.0.2.2:3000",
cleartext: true
},
// iOS and Android specific configuration
ios: {
contentInset: 'automatic',
},
android: {
allowMixedContent: true,
}
};
export default config;