mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-18 00:07:21 +00:00
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
const { createProxyMiddleware } = require('http-proxy-middleware');
|
|
|
|
module.exports = function(app) {
|
|
app.use(
|
|
'/api',
|
|
createProxyMiddleware({
|
|
target: 'http://localhost:9080',
|
|
changeOrigin: true,
|
|
})
|
|
);
|
|
}; |