blob: 6f082c8dc51d147328c84717dfd3bb377e3db2fc (
plain) (
blame)
1
2
3
4
5
6
7
|
const { createProxyMiddleware } = require('http-proxy-middleware');
module.exports = function(app) {
app.use(createProxyMiddleware("/api", { target: "http://localhost:3333" }));
app.use(createProxyMiddleware("/setup", { target: "http://localhost:3333" }));
app.use(createProxyMiddleware("/ws", { target: "http://localhost:3333", ws: true }));
};
|