# -------------------------
# Cache-Control headers
# -------------------------
<IfModule mod_headers.c>
# HTML: always revalidate so new hashed asset URLs are picked up
<FilesMatch "^(index\.html)?$">
Header set Cache-Control "no-cache"
</FilesMatch>
# Hashed assets: cache "forever"
<FilesMatch "\.(js|css|png|jpg|jpeg|gif|svg|webp|ico|woff2?)$">
Header set Cache-Control "public, max-age=31536000, immutable"
</FilesMatch>
</IfModule>