(configHost: string)
| 13 | } |
| 14 | |
| 15 | function getDefaultHost(configHost: string): string { |
| 16 | if (typeof __TANSTACK_DEVTOOLS_HOST__ !== 'undefined') |
| 17 | return __TANSTACK_DEVTOOLS_HOST__ |
| 18 | return configHost |
| 19 | } |
| 20 | |
| 21 | function getDefaultProtocol( |
| 22 | configProtocol: 'http' | 'https', |