github.com/neohugo/neohugo@v0.123.8/create/skeletons/theme/layouts/partials/head/js.html (about) 1 {{- with resources.Get "js/main.js" }} 2 {{- if eq hugo.Environment "development" }} 3 {{- with . | js.Build }} 4 <script src="{{ .RelPermalink }}"></script> 5 {{- end }} 6 {{- else }} 7 {{- $opts := dict "minify" true }} 8 {{- with . | js.Build $opts | fingerprint }} 9 <script src="{{ .RelPermalink }}" integrity="{{- .Data.Integrity }}" crossorigin="anonymous"></script> 10 {{- end }} 11 {{- end }} 12 {{- end }}