Prechádzať zdrojové kódy

fix: unminified JavaScript (#2305)

Repeat prev commit action on the init script
George Cushen 3 rokov pred
rodič
commit
8bba30b81a
1 zmenil súbory, kde vykonal 5 pridanie a 5 odobranie
  1. 5 5
      wowchemy/layouts/_default/baseof.html

+ 5 - 5
wowchemy/layouts/_default/baseof.html

@@ -18,13 +18,13 @@
   {{ $js_params := dict "wcDarkLightEnabled" $wcDarkLightEnabled "wcIsSiteThemeDark" $wcIsSiteThemeDark }}
   {{ $js_bundle := resources.Get "js/wowchemy-init.js" | js.Build (dict "params" $js_params) }}
   {{- if hugo.IsProduction -}}
-    {{ $js_bundle = $js_bundle | minify }}
-  {{- end -}}
-  {{ $js_bundle := slice $js_bundle_head $js_bundle | resources.Concat "js/wowchemy-init.min.js" }}
-  {{- if hugo.IsProduction -}}
-    {{- $js_bundle = $js_bundle | js.Build (dict "format" "iife") | fingerprint "md5" -}}
+    {{- $js_bundle = $js_bundle | js.Build (dict "format" "iife") | minify -}}
   {{- else -}}
     {{- $js_bundle = $js_bundle | js.Build (dict "format" "iife" "sourceMap" "inline") -}}
+  {{ end }}
+  {{ $js_bundle := slice $js_bundle_head $js_bundle | resources.Concat "js/wowchemy-init.min.js" }}
+  {{- if hugo.IsProduction -}}
+    {{ $js_bundle = $js_bundle | fingerprint "md5" }}
   {{- end -}}
   <script src="{{ $js_bundle.RelPermalink }}"></script>