mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 08:49:52 +03:00
13 lines
257 B
JavaScript
13 lines
257 B
JavaScript
const { createProxyMiddleware } = require('http-proxy-middleware');
|
|
|
|
module.exports = function (app) {
|
|
app.use(
|
|
'/rest/*',
|
|
createProxyMiddleware({
|
|
target: 'http://localhost:3080',
|
|
secure: false,
|
|
changeOrigin: true
|
|
})
|
|
);
|
|
};
|