proxy.ts 856 B

12345678910111213141516171819202122232425262728293031323334353637
  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: 'https://api.zanxiangwl.com',
  12. changeOrigin: true,
  13. pathRewrite: { '/api': '' },
  14. },
  15. '/gameApi/': {
  16. target: 'https://game.84game.cn',//服务器
  17. changeOrigin: true,
  18. pathRewrite: { '^/gameApi/': '' },
  19. },
  20. },
  21. test: {
  22. '/api/': {
  23. target: 'https://preview.pro.ant.design',
  24. changeOrigin: true,
  25. pathRewrite: { '^': '' },
  26. },
  27. },
  28. pre: {
  29. '/api/': {
  30. target: 'your pre url',
  31. changeOrigin: true,
  32. pathRewrite: { '^': '' },
  33. },
  34. },
  35. }