mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
af07611a63
Fixes #4495 Here's my approach for replacing the XHR on-demand-entries pinger #1364 #4495. I'm not sure if this is the way everyone wants to accomplish this since I saw mention of using a separate server and port for the dynamic entries websocket, but thought this would be a fairly clean solution since it doesn't need that. With this method the only change when using a custom server is you have to listen for the upgrade event and pass it to next.getRequestHandler(). Example: ``` const server = app.listen(port) const handleRequest = next.getRequestHandler() if(dev) { server.on('upgrade', handleRequest) } ``` |
||
---|---|---|
.. | ||
dev-error-overlay | ||
error-boundary.js | ||
head-manager.js | ||
index.js | ||
link.js | ||
next-dev.js | ||
next.js | ||
noop.js | ||
on-demand-entries-client.js | ||
page-loader.js | ||
router.js | ||
source-map-support.js | ||
webpack-hot-middleware-client.js | ||
with-router.js |