File size: 294 Bytes
0b85fad
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// 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;