From 473fddee3662ff1ae5a643c23339d66f2be3406c Mon Sep 17 00:00:00 2001 From: Nathan Harkenrider Date: Mon, 27 Dec 2021 10:15:04 -0800 Subject: [PATCH] feat: implement cache busting for CSS --- 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