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
Copy file name to clipboardexpand all lines: lib/Server.js
+13-1
Original file line number
Diff line number
Diff line change
@@ -2040,6 +2040,15 @@ class Server {
2040
2040
if(proxyConfig.router){
2041
2041
returncreateProxyMiddleware(proxyConfig);
2042
2042
}
2043
+
2044
+
// TODO improve me after drop `bypass` to always generate error when configuration is bad
2045
+
if(!proxyConfig.bypass){
2046
+
util.deprecate(
2047
+
()=>{},
2048
+
`Invalid proxy configuration:\n\n${JSON.stringify(proxyConfig,null,2)}\n\nThe use of proxy object notation as proxy routes has been removed.\nPlease use the 'router' or 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options`,
"Using the 'bypass' option is deprecated. Please use the 'router' and 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
2125
+
"Using the 'bypass' option is deprecated. Please use the 'router' or 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
"Using the 'bypass' option is deprecated. Please use the 'router' and 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
241
+
"Using the 'bypass' option is deprecated. Please use the 'router' or 'context' options. Read more at https://github.com/chimurai/http-proxy-middleware/tree/v2.0.6#http-proxy-middleware-options",
0 commit comments