mirror of
https://github.com/dergigi/boris.git
synced 2026-01-05 07:54:25 +01:00
13 lines
379 B
TypeScript
13 lines
379 B
TypeScript
// Centralized network configuration for relay queries
|
|
// Keep timeouts modest for local-first, longer for remote; tweak per use-case
|
|
|
|
export const LOCAL_TIMEOUT_MS = 1200
|
|
export const REMOTE_TIMEOUT_MS = 6000
|
|
|
|
// Contacts often need a bit more time on mobile networks
|
|
export const CONTACTS_REMOTE_TIMEOUT_MS = 9000
|
|
|
|
// Future knobs could live here (e.g., max limits per kind)
|
|
|
|
|