Spaces:
Running
Running
const { createProxyMiddleware } = require('http-proxy-middleware'); | |
module.exports = function(app) { | |
app.use( | |
'/ws', | |
createProxyMiddleware({ | |
target: 'http://localhost:3001', | |
ws: true, // Enable WebSocket proxying | |
changeOrigin: true | |
}) | |
); | |
}; |