rimarima/themes/hugo-liftoff/layouts/partials/footer/scripts.html
Adrian Amaglio c09f092db4 init
2023-11-17 10:54:41 +01:00

34 lines
1.1 KiB
HTML

{{ $opts := "" }}
{{ if hugo.IsProduction }}
{{ $opts = dict "targetPath" "main.js" }}
{{ else }}
{{ $opts = dict "targetPath" "main.js" "sourceMap" "inline" }}
{{ end }}
{{ $script := resources.Get "js/app.js" | js.Build $opts }}
{{ $custom := "" }}
{{ with .Site.Params.custom_js }}
{{ $custom = resources.Get . }}
{{/* Only concatenate in production to allow source maps */}}
{{ if hugo.IsProduction }}
{{ $bundle := slice $script $custom | resources.Concat "main.js" }}
{{ $script = $bundle }}
{{ else }}
<script src="{{ $custom.Permalink }}"></script>
{{ end }}
{{ end }}
{{ $final := "" }}
{{ if hugo.IsProduction }}
{{/* Only rebuild concatenated files in production (in dev there is no concat) */}}
{{/* Only minify in production to allow source maps */}}
{{ $final = $script | js.Build "main.js" | minify }}
{{ else }}
{{ $final = $script }}
{{ end }}
<script src="{{ $final.Permalink }}"></script>
<!-- Add Google Analytics v4 tag if not using GTM -->
{{ if and (not .Site.IsServer) (not .Site.Params.gtm_id) }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}