vercel.json 448 B

12345678910111213141516171819202122232425
  1. {
  2. "trailingSlash": true,
  3. "redirects": [
  4. {
  5. "source": "/posts/(.*)",
  6. "destination": "/writing/$1",
  7. "permanent": true
  8. },
  9. {
  10. "source": "/post/(.*)",
  11. "destination": "/writing/$1",
  12. "permanent": true
  13. },
  14. {
  15. "source": "/friends/",
  16. "destination": "/link/",
  17. "permanent": true
  18. },
  19. {
  20. "source": "/links/",
  21. "destination": "/link/",
  22. "permanent": true
  23. }
  24. ]
  25. }