vercel.json 311 B

12345678910111213141516
  1. {
  2. "rewrites": [
  3. {
  4. "source": "/stats/js/script.js",
  5. "destination": "https://plausible.io/js/script.js"
  6. },
  7. {
  8. "source": "/stats/api/event",
  9. "destination": "https://plausible.io/api/event"
  10. },
  11. {
  12. "source": "/(.*)",
  13. "destination": "/error-404.html"
  14. }
  15. ]
  16. }