mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-19 08:50:57 +00:00
18 lines
364 B
JavaScript
18 lines
364 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,
|
|
})
|
|
);
|
|
}; |