compose-theme/layouts/partials/scripts/getJsBundle.html

8 lines
267 B
HTML
Raw Normal View History

2024-07-26 17:08:59 +02:00
{{- $bundle := .scripts | resources.Concat (printf "js/%s.js" .slug) | resources.Minify | resources.Fingerprint "sha512" }}
{{- if .inline }}
<script>
{{ safeJS $bundle.Content }}
</script>
{{- else }}
<script src="{{ $bundle.Permalink }}" async></script>
{{ end }}