mirror of https://github.com/docker/docs.git
hugo: replace deprecated resources.PostCSS method
hugo --logLevel info ... INFO deprecated: resources.PostCSS was deprecated in Hugo v0.128.0 and will be removed in a future release. Use css.PostCSS. Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
parent
73f137e77b
commit
27290ad524
|
@ -1,5 +1,5 @@
|
|||
{{ $styles := resources.Get "css/styles.css" }}
|
||||
{{ $styles = $styles | resources.PostCSS }}
|
||||
{{ $styles = $styles | css.PostCSS }}
|
||||
{{ if hugo.IsProduction }}
|
||||
{{ $styles = $styles | minify | fingerprint | resources.PostProcess }}
|
||||
<style>
|
||||
|
|
Loading…
Reference in New Issue