diff --git a/lib/adapters/http.js b/lib/adapters/http.js index da0a42d..0577bf0 100755 --- a/lib/adapters/http.js +++ b/lib/adapters/http.js @@ -228,7 +228,7 @@ export default isHttpAdapterSupported && function httpAdapter(config) { } // Parse url - const fullPath = buildFullPath(config.baseURL, config.url); + const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls); const parsed = new URL(fullPath, platform.hasBrowserEnv ? platform.origin : undefined); const protocol = parsed.protocol || supportedProtocols[0];