소스 검색

fix: unminified JavaScript (#2305)

Repeat prev commit action on the init script
George Cushen 3 년 전
부모
커밋
8bba30b81a
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  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>