proxy.ts 906 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 在生产环境 代理是无法生效的,所以这里没有生产环境的配置
  3. * The agent cannot take effect in the production environment
  4. * so there is no configuration of the production environment
  5. * For details, please see
  6. * https://pro.ant.design/docs/deploy
  7. */
  8. export default {
  9. dev: {
  10. '/api/': {
  11. target: 'http://api.zanxiangwl.com',
  12. // target: 'https://testapi.zanxiangwl.com',
  13. changeOrigin: true,
  14. pathRewrite: { '/api': '' },
  15. },
  16. '/gameApi/': {
  17. target: 'https://game.84game.cn',//服务器
  18. changeOrigin: true,
  19. pathRewrite: { '^/gameApi/': '' },
  20. },
  21. },
  22. test: {
  23. '/api/': {
  24. target: 'https://preview.pro.ant.design',
  25. changeOrigin: true,
  26. pathRewrite: { '^': '' },
  27. },
  28. },
  29. pre: {
  30. '/api/': {
  31. target: 'your pre url',
  32. changeOrigin: true,
  33. pathRewrite: { '^': '' },
  34. },
  35. },
  36. }