Skip to content

Commit d607b2b

Browse files
authoredMay 12, 2022
fix: remove useless /__vite_ping handler (#8133)
1 parent da6dc9d commit d607b2b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed
 

‎packages/vite/src/node/server/index.ts

-6
Original file line numberDiff line numberDiff line change
@@ -496,12 +496,6 @@ export async function createServer(
496496
// open in editor support
497497
middlewares.use('/__open-in-editor', launchEditorMiddleware())
498498

499-
// hmr reconnect ping
500-
// Keep the named function. The name is visible in debug logs via `DEBUG=connect:dispatcher ...`
501-
middlewares.use('/__vite_ping', function viteHMRPingMiddleware(_, res) {
502-
res.end('pong')
503-
})
504-
505499
// serve static files under /public
506500
// this applies before the transform middleware so that these files are served
507501
// as-is without transforms.

1 commit comments

Comments
 (1)

whalesalad commented on May 29, 2022

@whalesalad

This looks like a regression?

Please sign in to comment.