Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 307 Bytes
d6b6619 |
1 2 3 4 5 6 7 8 9 10 11 12 |
// API Configuration
const API_CONFIG = {
// Use the current origin in production (Hugging Face Spaces)
// Fallback to localhost in development
BASE_URL:
process.env.REACT_APP_NODE_ENV === "production"
? window.location.origin
: "http://localhost:3001",
};
export default API_CONFIG;
|