tfrere's picture
update fast api endpoint
2c8e1bd
raw
history blame
281 Bytes
// API Configuration
const API_CONFIG = {
// Use the current origin in production and development
// This ensures requests are always routed through the Express server
// which will proxy them to the backend
BASE_URL: window.location.origin,
};
export default API_CONFIG;