proxy.ts 778 B

12345678910111213141516171819202122232425262728293031
  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://uat.jishutao.com',
  12. changeOrigin: true, //target为域名时设为true
  13. pathRewrite: { '/api/login': '' },
  14. },
  15. },
  16. test: {
  17. '/api/': {
  18. target: 'https://preview.pro.ant.design',
  19. changeOrigin: true,
  20. pathRewrite: { '/api/login': '' },
  21. },
  22. },
  23. pre: {
  24. '/api/': {
  25. target: 'your pre url',
  26. changeOrigin: true,
  27. pathRewrite: { '/api/login': '' },
  28. },
  29. },
  30. };