playable-preview/src/setupProxy.js

13 lines
258 B
JavaScript
Raw Normal View History

2024-06-01 14:44:16 +08:00
const { createProxyMiddleware } = require("http-proxy-middleware");
module.exports = function (app) {
2024-10-14 22:38:47 +08:00
app.use(
"/api",
createProxyMiddleware({
target: "https://api.soyootech.com/",
changeOrigin: true,
pathRewrite: { "^/api": "" },
})
);
2024-06-01 14:44:16 +08:00
};