mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-14 05:43:51 +00:00
19 lines
366 B
JavaScript
19 lines
366 B
JavaScript
const { createProxyMiddleware } = require('http-proxy-middleware');
|
|
|
|
module.exports = function (app) {
|
|
app.use(
|
|
'/api',
|
|
createProxyMiddleware({
|
|
target: 'http://localhost:9080',
|
|
changeOrigin: true,
|
|
})
|
|
);
|
|
app.use(
|
|
'/openapi',
|
|
createProxyMiddleware({
|
|
target: 'http://localhost:9080',
|
|
changeOrigin: true,
|
|
})
|
|
);
|
|
};
|