vercel.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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": "/gallery/(.*)",
  16. "destination": "/photo/$1",
  17. "permanent": true
  18. },
  19. {
  20. "source": "/friends/",
  21. "destination": "/link/",
  22. "permanent": true
  23. },
  24. {
  25. "source": "/links/",
  26. "destination": "/link/",
  27. "permanent": true
  28. },
  29. {
  30. "source": "/writing/2018/compile-nginx-tls1.3/",
  31. "destination": "/writing/2018/compile-nginx-tls1_3/",
  32. "permanent": true
  33. }
  34. ],
  35. "headers": [
  36. {
  37. "source": "/(.*).(jpe?g|png|gif|webp|ico|svg|css|js|ttf|otf|woff2?)",
  38. "headers": [
  39. {
  40. "key": "Cache-Control",
  41. "value": "public, max-age=15552000, immutable"
  42. }
  43. ]
  44. },
  45. {
  46. "source": "/js/comment.js",
  47. "headers": [
  48. {
  49. "key": "Cache-Control",
  50. "value": "public, max-age=2592000, must-revalidate"
  51. }
  52. ]
  53. }
  54. ]
  55. }