Files
hugo/testscripts/commands/hugo__path-warnings-postprocess.txt
T
2025-11-27 20:41:56 +01:00

21 lines
398 B
Plaintext

hugo --printPathWarnings
! stdout 'Duplicate'
-- hugo.toml --
-- assets/css/styles.css --
body {
background-color: #000;
}
-- content/p1.md --
-- content/p2.md --
-- content/p3.md --
-- layouts/home.html --
Home.
-- layouts/single.html --
{{ $css := resources.Get "css/styles.css" }}
{{ $css := $css | minify | fingerprint | resources.PostProcess }}
CSS: {{ $css.RelPermalink }}
{{ .Title }}