vercel.json 374 B

1234567891011121314151617181920
  1. {
  2. "rewrites": [
  3. {
  4. "source": "/api",
  5. "destination": "https://api.antdv-pro.com"
  6. },
  7. {
  8. "source": "/api/",
  9. "destination": "https://api.antdv-pro.com/"
  10. },
  11. {
  12. "source": "/api/:match*",
  13. "destination": "https://api.antdv-pro.com/:match*"
  14. },
  15. {
  16. "source": "/:path*",
  17. "destination": "/index.html"
  18. }
  19. ]
  20. }