forked from drowl87/hextra_mirror

chore: add styles to html and body chore: update theme for tailwind config chore: update colors chore: add list layout override for docs chore: update default layouts chore: update contents
53 lines
1.1 KiB
TOML
53 lines
1.1 KiB
TOML
# Hugo config
|
|
title = "Hextra Theme"
|
|
|
|
baseURL = "https://example.org"
|
|
|
|
disableKinds = ["taxonomy", "term"]
|
|
|
|
[module]
|
|
[module.hugoVersion]
|
|
extended = true
|
|
min = "0.115.1"
|
|
[[module.mounts]]
|
|
source = "assets"
|
|
target = "assets"
|
|
[[module.mounts]]
|
|
source = "hugo_stats.json"
|
|
target = "assets/watching/hugo_stats.json"
|
|
|
|
[build]
|
|
writeStats = 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"
|
|
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
name = 'Documentation'
|
|
pageRef = '/docs'
|
|
weight = 10
|
|
[[menu.main]]
|
|
name = 'Showcase'
|
|
pageRef = '/showcase'
|
|
weight = 20
|
|
[[menu.main]]
|
|
name = 'About'
|
|
pageRef = '/about'
|
|
weight = 30
|
|
[[menu.main]]
|
|
name = 'GitHub'
|
|
url = 'https://github.com'
|
|
weight = 40
|
|
params = { icon = 'github' }
|