proxy.conf.json 327 B

123456789101112131415161718
  1. {
  2. "/api-mobile": {
  3. "target": "http://localhost:3201",
  4. "secure": false,
  5. "changeOrigin": true,
  6. "pathRewrite": {
  7. "^/api-mobile": "/api"
  8. }
  9. },
  10. "/api-pc": {
  11. "target": "http://localhost:3101",
  12. "secure": false,
  13. "changeOrigin": true,
  14. "pathRewrite": {
  15. "^/api-pc": "/api"
  16. }
  17. }
  18. }