26 lines
552 B
TOML
26 lines
552 B
TOML
baseURL = 'https://example.org/'
|
|
languageCode = 'en-us'
|
|
title = 'My New Hugo Site'
|
|
|
|
[params]
|
|
author = "Federico Polidoro"
|
|
leyenda = "Estudiante de ingenieria en sistemas"
|
|
|
|
[build]
|
|
[build.buildStats]
|
|
enable = true
|
|
[[build.cachebusters]]
|
|
source = 'assets/notwatching/hugo_stats\.json'
|
|
target = 'css'
|
|
[[build.cachebusters]]
|
|
source = '(postcss|tailwind)\.config\.js'
|
|
target = 'css'
|
|
[module]
|
|
[[module.mounts]]
|
|
source = 'assets'
|
|
target = 'assets'
|
|
[[module.mounts]]
|
|
disableWatch = true
|
|
source = 'hugo_stats.json'
|
|
target = 'assets/notwatching/hugo_stats.json'
|