proxy.ts 316 B

1234567891011121314
  1. /**
  2. * 在生产环境 代理是无法生效的,所以这里没有生产环境的配置
  3. */
  4. export default {
  5. dev: {
  6. '/api/': {
  7. // target: 'http://fabdev.com',
  8. // target: 'http://fabqa.com',
  9. target: 'http://fab3h1qa.com',
  10. changeOrigin: true,
  11. pathRewrite: { '^': '' }
  12. }
  13. }
  14. }