From 9c1eff583a3f08502adb7a9ff7b10377d630c563 Mon Sep 17 00:00:00 2001 From: p4gs <10093271+p4gs@users.noreply.github.com> Date: Tue, 2 Jun 2026 09:21:39 -0400 Subject: [PATCH] fix: cache-bust style.css per build so deploys are picked up immediately MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The stylesheet had no version string, so browsers cached it for max-age=600 (10 min) — after a deploy users kept seeing the old CSS until the cache expired. Append ?v={{ site.time | date '%s' }} (build timestamp) so every deploy yields a fresh URL and the new CSS loads immediately. --- docs/_layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 1b52eb2..70891d3 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -5,7 +5,7 @@