7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
function FindProxyForURL(url, host) {
|
|
if (dnsDomainIs(host, '.wpt.test')) {
|
|
return "PROXY 127.0.0.1:{{ports[http][0]}}"
|
|
}
|
|
|
|
return "DIRECT";
|
|
}
|