vercel.json 366 B

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