File tree 1 file changed +15
-1
lines changed
packages/vite/src/node/server/middlewares
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ export interface ProxyOptions extends HttpProxy.ServerOptions {
24
24
*/
25
25
bypass ?: (
26
26
req : http . IncomingMessage ,
27
- res : http . ServerResponse ,
27
+ /** undefined for WebSocket upgrade requests */
28
+ res : http . ServerResponse | undefined ,
28
29
options : ProxyOptions ,
29
30
) => void | null | undefined | false | string
30
31
/**
@@ -167,6 +168,19 @@ export function proxyMiddleware(
167
168
opts . target ?. toString ( ) . startsWith ( 'ws:' ) ||
168
169
opts . target ?. toString ( ) . startsWith ( 'wss:' )
169
170
) {
171
+ if ( opts . bypass ) {
172
+ const bypassResult = opts . bypass ( req , undefined , opts )
173
+ if ( typeof bypassResult === 'string' ) {
174
+ req . url = bypassResult
175
+ debug ?.( `bypass: ${ req . url } -> ${ bypassResult } ` )
176
+ return
177
+ } else if ( bypassResult === false ) {
178
+ debug ?.( `bypass: ${ req . url } -> 404` )
179
+ socket . end ( 'HTTP/1.1 404 Not Found\r\n\r\n' , '' )
180
+ return
181
+ }
182
+ }
183
+
170
184
if ( opts . rewrite ) {
171
185
req . url = opts . rewrite ( url )
172
186
}
You can’t perform that action at this time.
0 commit comments