Files
gatehouse-ui/src/config.ts
T

21 lines
416 B
TypeScript
Raw Normal View History

2026-01-06 15:42:41 +00:00
// Gatehouse Configuration
// Environment-specific settings for the application
export const config = {
// API Configuration
api: {
2026-01-11 07:03:52 +00:00
baseUrl: import.meta.env.VITE_API_BASE_URL || "http://192.168.64.7:8888/api/v1",
2026-01-06 15:42:41 +00:00
},
// App metadata
app: {
2026-01-06 15:45:46 +00:00
name: "Gatehouse",
description: "Identity & Access Platform",
2026-01-06 15:42:41 +00:00
},
// Feature flags
features: {
devTools: import.meta.env.DEV,
},
} as const;