Augusto
Results
2
issues of
Augusto
``` async function useCustomDNSResolver(config: AxiosRequestConfig) { const { host } = parseURL(config.url); config.url = await DNSHelper.resolveUrl(config.url); // resolves url to ip config.headers.host = host; // put original hostname in Host...
After my project automatically upgraded from [email protected] to [email protected], my project stopped working. Apparently, some change on hoow node internal packages are served broke the main function of the codebase:...