vercel.json 329 B

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