Skip to content

Instantly share code, notes, and snippets.

@QuinnCiccoretti
Last active March 9, 2026 15:16
Show Gist options
  • Select an option

  • Save QuinnCiccoretti/41eb054c365d66107ee19c25f70491d2 to your computer and use it in GitHub Desktop.

Select an option

Save QuinnCiccoretti/41eb054c365d66107ee19c25f70491d2 to your computer and use it in GitHub Desktop.
function FindProxyForURL(url, host) {
var proxy = "PROXY 127.0.0.1:9443; DIRECT";
var direct = "DIRECT";
if (host === "dev.yext.com" ||
host === "yext.com" ||
host === "app.eu.yext.com ||
host === "www.yext.com" ||
host === "dev.yextstatic.com" ||
host === "www.yextstatic.com" ||
host === "eu.yextstatic.com") {
return proxy;
}
return direct;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment