File size: 276 Bytes
ec50620
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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
    })
  );
};