playable-preview/src/setupProxy.js

13 lines
282 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-06-01 14:45:50 +08:00
// app.use(
// "/api",
// createProxyMiddleware({
// target: "https://api.soyootech.com/",
// changeOrigin: true,
// pathRewrite: { "^/api": "" },
// })
// );
2024-06-01 14:44:16 +08:00
};