mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
const createProxyMiddleware = require('http-proxy-middleware');
|
|
|
|
module.exports = function (app) {
|
|
app.use(
|
|
'/rest/*',
|
|
createProxyMiddleware({
|
|
target: 'http://localhost:3080',
|
|
secure: false,
|
|
changeOrigin: true,
|
|
// pathRewrite: {
|
|
// '^/api/settings': '/api/app/settings'
|
|
// },
|
|
})
|
|
);
|
|
};
|