14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
export const environment = {
|
|
production: false,
|
|
appVersion: '0.1.0',
|
|
logging: {
|
|
enabled: true,
|
|
endpoint: '/api/log',
|
|
batchSize: 5,
|
|
debounceMs: 2000,
|
|
maxRetries: 5,
|
|
circuitBreakerThreshold: 5,
|
|
circuitBreakerResetMs: 30000,
|
|
},
|
|
};
|