netlify.toml 860 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [[redirects]]
  2. from = "/*"
  3. to = "/index.html"
  4. status = 200
  5. [[headers]]
  6. for = "/*.js"
  7. [headers.values]
  8. Cache-Control = "public, max-age=31536000, must-revalidate"
  9. [[headers]]
  10. for = "/*.css"
  11. [headers.values]
  12. Cache-Control = "public, max-age=31536000, must-revalidate"
  13. [[headers]]
  14. for = "/*.png"
  15. [headers.values]
  16. Cache-Control = "public, max-age=31536000, must-revalidate"
  17. [[headers]]
  18. for = "/*.jpg"
  19. [headers.values]
  20. Cache-Control = "public, max-age=31536000, must-revalidate"
  21. [[headers]]
  22. for = "/*.webp"
  23. [headers.values]
  24. Cache-Control = "public, max-age=31536000, must-revalidate"
  25. [[headers]]
  26. for = "/*.svg"
  27. [headers.values]
  28. Cache-Control = "public, max-age=31536000, must-revalidate"
  29. [[headers]]
  30. for = "/*.json"
  31. [headers.values]
  32. Cache-Control = "public, max-age=31536000, must-revalidate"