14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
||
|
/* eslint-disable no-undef */
|
||
|
const { createProxyMiddleware } = require('http-proxy-middleware');
|
||
|
|
||
|
module.exports = function (app) {
|
||
|
app.use(
|
||
|
'/chatapi',
|
||
|
createProxyMiddleware({
|
||
|
target: 'http://localhost:3001',
|
||
|
secure: false,
|
||
|
changeOrigin: true,
|
||
|
})
|
||
|
);
|
||
|
};
|