Start building sites �
hugo v0.140.0+extended linux/amd64 BuildDate=unknown
ERROR deprecated: resources.ToCSS was deprecated in Hugo v0.128.0 and will be removed in Hugo 0.141.0. Use css.Sass instead.
Se arregla modificando en themes:
{{ if $.Site.Params.postcss }}
{{ .Scratch.Set "sass" ($sass | resources.ToCSS $options | postCSS | resources.Minify) }}
{{ else }}
{{ .Scratch.Set "sass" ($sass | resources.ToCSS $options | resources.Minify) }}
{{ end }}
Por:
{{ if $.Site.Params.postcss }}
{{ .Scratch.Set "sass" ($sass | css.Sass $options | postCSS | resources.Minify) }}
{{ else }}
{{ .Scratch.Set "sass" ($sass | css.Sass $options | resources.Minify) }}
{{ end }}