39 lines
913 B
TOML
39 lines
913 B
TOML
baseURL = 'https://example.org/'
|
|
languageCode = 'en-us'
|
|
title = 'My New Hugo Site'
|
|
theme = 'cccsbg-hugo-theme'
|
|
|
|
[module]
|
|
[module.hugoVersion]
|
|
extended = false
|
|
min = "0.112.0"
|
|
[[module.mounts]]
|
|
source = "assets"
|
|
target = "assets"
|
|
[[module.mounts]]
|
|
source = "hugo_stats.json"
|
|
target = "assets/watching/hugo_stats.json"
|
|
|
|
[build]
|
|
[build.buildStats]
|
|
enable = true
|
|
[[build.cachebusters]]
|
|
source = "assets/watching/hugo_stats\\.json"
|
|
target = "styles\\.css"
|
|
[[build.cachebusters]]
|
|
source = "(postcss|tailwind)\\.config\\.js"
|
|
target = "css"
|
|
[[build.cachebusters]]
|
|
source = "assets/.*\\.(js|ts|jsx|tsx)"
|
|
target = "js"
|
|
[[build.cachebusters]]
|
|
source = "assets/.*\\.(.*)$"
|
|
target = "$1"
|
|
|
|
## Needed for our short code
|
|
[markup]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
[markup.goldmark.parser.attribute]
|
|
block = true
|
|
title = true
|