Last active
March 9, 2026 15:16
-
-
Save QuinnCiccoretti/41eb054c365d66107ee19c25f70491d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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