platformSupabaseUrl property

String get platformSupabaseUrl

The Dutato "platform" Supabase URL — always the compile-time demo instance, regardless of whether the user has switched to their own project. Used to reach shared infrastructure that lives on the demo instance (e.g. the mgmt-proxy Edge Function used by the web build to call the Supabase Management API without hitting a CORS block).

Returns an empty string when the build was produced without --dart-define=SUPABASE_URL=..., in which case callers should fall back gracefully (e.g. skip the web-only proxy path).

Implementation

static String get platformSupabaseUrl => _compileTimeUrl;