fix: cache-bust CSS/JS with version query string
CI/CD / deploy (push) Failing after 36s Details

Cloudflare was serving stale cached CSS. Adding ?v=hash to force
browsers and CDN to fetch the updated files.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-04-13 16:27:32 -04:00
parent 4a8a71d3c9
commit 9f638fba0a
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="styles.css?v=4a8a71d">
</head>
<body>
<!-- Navigation -->
@ -501,6 +501,6 @@
</div>
</div>
<script src="script.js"></script>
<script src="script.js?v=4a8a71d"></script>
</body>
</html>