You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes)
75
+
/** Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes) */
76
76
proxyTimeout?: number;
77
-
// Timeout (in milliseconds) for incoming requests
77
+
/** Timeout (in milliseconds) for incoming requests */
78
78
timeout?: number;
79
-
// Specify whether you want to follow redirects. Default: false
79
+
/** Specify whether you want to follow redirects. Default: false */
80
80
followRedirects?: boolean;
81
-
// If set to true, none of the webOutgoing passes are called and it's your responsibility to appropriately return the response by listening and acting on the proxyRes event
81
+
/** If set to true, none of the webOutgoing passes are called and it's your responsibility to appropriately return the response by listening and acting on the proxyRes event */
0 commit comments