proxy.ts 204 B

1234567891011121314
  1. /**
  2. * @description 项目代理配置
  3. */
  4. module.exports = {
  5. dev: {
  6. '/api': {
  7. target: 'http://124.222.113.37:8888',
  8. changeOrigin: true,
  9. pathRewrite: { '^/api': '' }
  10. }
  11. }
  12. }