1---
 2title: Cache busting in Hugo
 3url: cachebusting-in-hugo.html
 4date: 2023-05-01T12:00:00+02:00
 5type: note
 6draft: false
 7---
 8
 9```html
10\{\{ $cachebuster := delimit (shuffle (split (md5 "6fab11c6669976d759d2992eff1dd5be") "" )) "" \}\}
11
12<link rel="stylesheet" href="/style.css?v=\{\{ $cachebuster \}\}">
13```
14
15This `6fab11c6669976d759d2992eff1dd5be` can be random string you generate use.
16You can use whatever you want.