{{ $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 }} {{ 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 }} {{ if and (not .Site.IsServer) (not .Site.Params.gtm_id) }} {{ template "_internal/google_analytics.html" . }} {{ end }}