diff --git a/lib/core/config/env.dart b/lib/core/config/env.dart index 05a5256..247befd 100644 --- a/lib/core/config/env.dart +++ b/lib/core/config/env.dart @@ -4,6 +4,9 @@ class Env { Env._(); static String get baseUrl { + if (isProd) { + return 'https://gdg-appointment-booking-system.onrender.com/api'; + } if (kIsWeb) { return 'http://localhost:3000'; }