diff --git a/wowchemy/layouts/partials/site_head.html b/wowchemy/layouts/partials/site_head.html index 3a8b1283..9d365ab8 100644 --- a/wowchemy/layouts/partials/site_head.html +++ b/wowchemy/layouts/partials/site_head.html @@ -101,9 +101,16 @@ {{- $stylesheets = $stylesheets | append (resources.Get (printf "css/libs/%s.css" . ) ) -}} {{- end -}} {{ $stylesheets = $stylesheets | resources.Concat "css/vendor-bundle.css" | minify }} + {{- if eq (getenv "WC_POST_CSS") "true" -}} + {{- $stylesheets = $stylesheets | postCSS -}} + {{- end -}} {{- if hugo.IsProduction -}} {{- $stylesheets = $stylesheets | fingerprint "md5" -}} {{- end -}} + {{- if eq (getenv "WC_POST_CSS") "true" -}} + {{/* PostProcess must be last action in the pipeline */}} + {{- $stylesheets = $stylesheets | resources.PostProcess -}} + {{- end -}} {{ $scr.Set "vendor_css_filename" "main.min.css" }}