From dde6a10cabb21ccdb707e90e7c0a9938a118aaa7 Mon Sep 17 00:00:00 2001 From: Nathan Harkenrider <824186+NateHark@users.noreply.github.com> Date: Tue, 28 Dec 2021 14:28:33 -0800 Subject: [PATCH] feat: implement cache busting for CSS (#444) --- layouts/partials/head/style.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/head/style.html b/layouts/partials/head/style.html index 431e212..ee6b017 100644 --- a/layouts/partials/head/style.html +++ b/layouts/partials/head/style.html @@ -1,3 +1,3 @@ {{ $sass := resources.Get "scss/style.scss" }} -{{ $style := $sass | resources.ToCSS | minify }} +{{ $style := $sass | resources.ToCSS | minify | resources.Fingerprint "sha256" }} \ No newline at end of file