8 lines
393 B
HTML
8 lines
393 B
HTML
{{ $script := resources.Get "js/bundle.js" }}
|
|
{{ $processedScript := $script | default $script }}
|
|
{{ if not hugo.IsServer }}
|
|
{{ $processedScript = $script | minify | fingerprint }}
|
|
{{ end }}
|
|
<script src="{{ if hugo.IsServer }}{{ $script.RelPermalink }}{{ else }}{{ .Site.Params.cdnURL }}{{ $processedScript.RelPermalink }}{{ end }}"></script>
|
|
<script>twemoji.parse(document.body)</script>
|