We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a3953 commit d817661Copy full SHA for d817661
src/interceptors/fresh-chrome.ts
@@ -56,7 +56,11 @@ export class FreshChrome implements Interceptor {
56
// Don't intercept our warning hiding requests
57
noProxy: hideWarningServer.host,
58
options: [
59
- `--ignore-certificate-errors-spki-list=${spkiFingerprint}`
+ // Trust our CA certificate's fingerprint:
60
+ `--ignore-certificate-errors-spki-list=${spkiFingerprint}`,
61
+ // Force even localhost requests to go through the proxy
62
+ // See https://bugs.chromium.org/p/chromium/issues/detail?id=899126#c17
63
+ `--proxy-bypass-list='<-loopback>'`
64
]
65
}, this.config.configPath);
66
0 commit comments