wikiracing-llms / src /lib /constants.ts
stillerman's picture
stillerman HF Staff
login via fastAPI
5a65482
raw
history blame contribute delete
200 Bytes
export const isProd = import.meta.env.VITE_ENV === "production";
export const API_BASE = isProd ? "" : "http://localhost:8000"; // we want this blank in production
console.log("API_BASE", API_BASE);