mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
18 lines
337 B
Text
18 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: "/"
|
||
|
---
|
||
|
|