File size: 295 Bytes
0b85fad e92d5c0 0b85fad e92d5c0 |
1 2 3 4 5 6 7 8 9 10 11 |
// Environment-based configuration constants
export const BACKEND_URL: string =
import.meta.env.VITE_BACKEND_URL || "http://127.0.0.1:8000";
// App configuration
export const APP_CONFIG = {
HEALTH_CHECK_INTERVAL: 10000, // 10 seconds
} as const;
export type AppConfig = typeof APP_CONFIG;
|