vercel.json 335 B

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