proxy.ts 291 B

123456789101112131415
  1. /**
  2. * @description 项目代理配置
  3. */
  4. module.exports = {
  5. dev: {
  6. '/api': {
  7. // target: 'http://192.168.1.198:9098/xiaodou-ai-admin/admin',
  8. target: 'http://localhost:9098/xiaodou-ai-admin/admin',
  9. changeOrigin: true,
  10. pathRewrite: { '^/api': '' }
  11. }
  12. }
  13. }