5a65482 27bba9c
1
2
3
4
5
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);