king
2025-05-23 24842b40de5cd60700bf69dfd38a0332f5431e36
src/setupProxy.js
@@ -1,9 +1,7 @@
// const proxy = require('http-proxy-middleware')
// const host = 'http://qingqiumarket.cn'
// const service = 'mkwms/'
const proxy = require('http-proxy-middleware')
const options = require('../public/options.json')
module.exports = function(app) {}
// module.exports = function(app) {
module.exports = function(app) {
//   app.use(proxy('/webapi', { 
//     target: `${host}/${service}webapi`,
//     secure: false,
@@ -32,14 +30,11 @@
//     }
//   }))
//   app.use(proxy('/wxpay', {
//     target: `${host}/${service}wxpay`,
//     secure: false,
//     changeOrigin: true,
//     pathRewrite: {
//     '^/wxpay': '/'
//     }
//   }))
  app.use(proxy('/wxpay', {
    target: `${options.host}/${options.service}`,
    secure: false,
    changeOrigin: true
  }))
//   app.use(proxy('/trans', {
//     target: `${host}/${service}`,
@@ -52,4 +47,4 @@
//     secure: false,
//     changeOrigin: true
//   }))
// }
}