Skip to content

Commit 0fab3f5

Browse files
Add user authentication and history features
- Implement user authentication to enable saving medical histories. - Integrate a more specialized medical transformer model. - Create native mobile applications.
1 parent 0ef572b commit 0fab3f5

16 files changed

+1922
-94
lines changed

capacitor.config.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
import { CapacitorConfig } from '@capacitor/cli';
3+
4+
const config: CapacitorConfig = {
5+
appId: 'app.lovable.06de8de2bf5f4ebbbc7cc1f55b9856fa',
6+
appName: 'revon',
7+
webDir: 'dist',
8+
server: {
9+
url: 'https://06de8de2-bf5f-4ebb-bc7c-c1f55b9856fa.lovableproject.com?forceHideBadge=true',
10+
cleartext: true
11+
},
12+
plugins: {
13+
SplashScreen: {
14+
launchShowDuration: 2000,
15+
backgroundColor: "#ffffff",
16+
showSpinner: true,
17+
spinnerColor: "#4F46E5",
18+
}
19+
}
20+
};
21+
22+
export default config;

0 commit comments

Comments
 (0)