13 lines
386 B
JavaScript
Executable file
13 lines
386 B
JavaScript
Executable file
// Runtime config — API key is injected server-side by nginx proxy, not stored here.
|
|
const CONFIG = {
|
|
syncro: {
|
|
subdomain: 'derenzybt',
|
|
baseUrl: 'https://derenzybt.syncromsp.com',
|
|
apiBase: '/syncro-api', // nginx reverse-proxies this to Syncro
|
|
},
|
|
app: {
|
|
idleTimeout: 180000, // ms before returning to scan mode (3 minutes)
|
|
},
|
|
};
|
|
|
|
export default CONFIG;
|