山西督察-superintend-distribute-web react
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
757 B

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