Created
April 8, 2026 07:03
-
-
Save bjalt/9c12665e534fe8d1131b335c72522b57 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) { | |
| if (dnsDomainIs(host, '.wip')) { | |
| return 'PROXY 127.0.0.1:7080'; | |
| } | |
| return 'DIRECT'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment