correct cache busting technique
This commit is contained in:
parent
8016710fe6
commit
d97176b3a3
|
@ -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 }}?{{ .Now.Unix }}" as="style">
|
||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}?{{ .Now.Unix }}">
|
||||
<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