From cd6644ea4ddc78597934ab0ef5ba50e3c3daa927 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sat, 8 Jul 2023 23:25:41 +0200 Subject: Moved to a simpler SSG --- content/cachebusting-in-hugo.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 content/cachebusting-in-hugo.md (limited to 'content/cachebusting-in-hugo.md') diff --git a/content/cachebusting-in-hugo.md b/content/cachebusting-in-hugo.md new file mode 100644 index 0000000..b889d6b --- /dev/null +++ b/content/cachebusting-in-hugo.md @@ -0,0 +1,17 @@ +--- +title: Cache busting in Hugo +url: cachebusting-in-hugo.html +date: 2023-05-01T12:00:00+02:00 +type: note +draft: false +tags: [hugo] +--- + +```html +{{ $cachebuster := delimit (shuffle (split (md5 "6fab11c6669976d759d2992eff1dd5be") "" )) "" }} + + +``` + +This `6fab11c6669976d759d2992eff1dd5be` can be random string you generate use. +You can use whatever you want. -- cgit v1.2.3