mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-16 19:24:27 +01:00
9 lines
426 B
JavaScript
9 lines
426 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
function FindProxyForURL(url, host) {
|
|
return 'PROXY 127.0.0.1:43144';
|
|
}
|