mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 07:53:54 +00:00
9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
/**
|
|
* Keep a short global timeout for regular API requests, but allow
|
|
* longer windows for file transfer and heavy import/export operations.
|
|
*/
|
|
export const axiosConfig = {
|
|
shortTimeout: 20 * 1000, // 20 seconds
|
|
longTimeout: 3 * 60 * 1000, // 3 minutes
|
|
} as const;
|