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 d8b9379 commit 4782a12Copy full SHA for 4782a12
src/interceptors/fresh-chrome.ts
@@ -54,11 +54,12 @@ export class FreshChrome implements Interceptor {
54
browser: (await getChromeBrowserName(this.config)) || 'chrome',
55
proxy: `https://127.0.0.1:${proxyPort}`,
56
noProxy: [
57
- // Don't intercept our warning hiding requests
58
- hideWarningServer.host,
59
// Force even localhost requests to go through the proxy
60
// See https://bugs.chromium.org/p/chromium/issues/detail?id=899126#c17
61
- '<-loopback>'
+ '<-loopback>',
+ // Don't intercept our warning hiding requests. Note that this must be
+ // the 2nd rule here, or <-loopback> would override it.
62
+ hideWarningServer.host
63
],
64
options: [
65
// Trust our CA certificate's fingerprint:
0 commit comments