mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-29 15:02:46 +00:00
20 lines
425 B
JavaScript
20 lines
425 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const proxy = require("http-proxy-middleware");
|
|
module.exports = function (app) {
|
|
app.use(
|
|
"/api",
|
|
proxy({
|
|
target: "http://localhost:5212",
|
|
changeOrigin: true,
|
|
})
|
|
);
|
|
|
|
app.use(
|
|
"/custom",
|
|
proxy({
|
|
target: "http://localhost:5212",
|
|
changeOrigin: true,
|
|
})
|
|
);
|
|
};
|