mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
d6197a41fa
And now with tests. Updates #10953
17 lines
337 B
Text
17 lines
337 B
Text
hugo --printPathWarnings
|
|
|
|
stdout 'Duplicate target paths: .index.html \(2\)'
|
|
|
|
-- hugo.toml --
|
|
disableKinds = ["taxonomy", "term", "RSS", "sitemap", "robotsTXT", "404", "section"]
|
|
baseURL = "https://example.org/"
|
|
-- layouts/_default/single.html --
|
|
Single.
|
|
-- layouts/index.html --
|
|
Home.
|
|
-- content/p1.md --
|
|
---
|
|
title: "P1"
|
|
url: "/"
|
|
---
|
|
|