vercel.json 428 B

12345678910111213141516171819
  1. {
  2. "version": 2,
  3. "rewrites": [
  4. {
  5. "source": "/(api|organization-avatar|avatar)/(.*)",
  6. "destination": "https://sentry.io/$1/$2"
  7. },
  8. {"source": "/_assets/(.*)", "destination": "/$1"},
  9. {"source": "/(.*)", "destination": "/index.html"}
  10. ],
  11. "headers": [
  12. {
  13. "source": "/api/(.*)",
  14. "headers": [{"key": "Referer", "value": "https://sentry.io/"}]
  15. }
  16. ],
  17. "github": {"silent": true}
  18. }