feat: automatically choose staging server
Some checks failed
TrafficCue CI / check (push) Failing after 1m28s
TrafficCue CI / build (push) Successful in 2m13s

This commit is contained in:
2025-09-06 18:03:31 +02:00
parent 795742139b
commit 9d226f3387

View File

@ -7,4 +7,6 @@ export const OVERPASS_SERVER = "https://overpass-api.de/api/interpreter";
export const LNV_SERVER =
location.hostname == "localhost" && location.protocol == "http:"
? "http://localhost:3000/api"
: location.hostname.includes("staging")
? "https://staging-trafficcue-api.picoscratch.de/api"
: "https://trafficcue-api.picoscratch.de/api";