mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
const { createProxyMiddleware } = require('http-proxy-middleware');
|
|
|
|
module.exports = function (app) {
|
|
const apiProxy = createProxyMiddleware('/api', {
|
|
target: 'http://localhost:5005'
|
|
})
|
|
|
|
const wsProxy = createProxyMiddleware('/socket', {
|
|
target: 'http://localhost:5005',
|
|
ws: true
|
|
})
|
|
|
|
app.use(apiProxy);
|
|
app.use(wsProxy);
|
|
}; |