3-dots-live-api-game / src /setupProxy.js
Trudy's picture
3 dots game
21daab4
raw
history blame contribute delete
276 Bytes
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
})
);
};