Use no-cache policy forCSS and JavaScript files

This commit is contained in:
Helen Chong 2024-07-31 00:29:05 +08:00
parent bc4efca419
commit ab6fe71575
1 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@ eleventyExcludeFromCollections: true
---
ErrorDocument 404 /404.html
<FilesMatch "\.(ico|svg|avif|jpg|png|gif|js|css|woff2)$">
<FilesMatch "\.(ico|svg|avif|jpg|png|gif|woff2)$">
Header set Cache-Control "max-age=31536000, public"
</FilesMatch>
<FilesMatch "\.(css|js)$">
Header set Cache-Control "no-cache, public"
</FilesMatch>