12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
// Export simple configuration service
|
|
export * from './config';
|
|
|
|
// Re-export commonly used functions
|
|
export {
|
|
getApiBaseUrl,
|
|
getAppName,
|
|
isDevelopment,
|
|
isProduction,
|
|
isDebugMode,
|
|
config
|
|
} from './config';
|