try to implement cache busting
This commit is contained in:
parent
5dd1d1759b
commit
8016710fe6
|
@ -37,8 +37,8 @@
|
|||
{{ $options := (dict "outputStyle" "compressed" "enableSourceMap" true) }}
|
||||
{{ $scss := resources.Get "scss/imports.scss" }}
|
||||
{{ $style := $scss | resources.ToCSS $options }}
|
||||
<link rel="preload" href="{{ $style.RelPermalink }}" as="style">
|
||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
||||
<link rel="preload" href="{{ $style.RelPermalink }}?{{ .Now.Unix }}" as="style">
|
||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}?{{ .Now.Unix }}">
|
||||
|
||||
{{ partialCached "favicons.html" . }}
|
||||
</head>
|
||||
|
|
Loading…
Reference in New Issue