Title here
Summary here
This page covers the main configuration tasks for a Thulite project.
Update your
settings in ./config/_default/hugo.toml:
title = "Thulite"
baseurl = "http://localhost/"
disableAliases = true
disableHugoGeneratorInject = true
disableKinds = ["taxonomy", "term"]
enableEmoji = true
enableGitInfo = false
enableRobotsTXT = true
languageCode = "en-US"
rssLimit = 10
summarylength = 20 # 70 (default)
copyRight = "Copyright (c) 2020-2026 Thulite"
[build.buildStats]
enable = true
[outputs]
home = ["HTML"]
[caches]
[caches.getresource]
dir = ":cacheDir/:project"
maxAge = "30m"
[taxonomies]
category = "categories"
[permalinks]
blog = "/:title/"
[minify.tdewolff.html]
keepComments = true # If set to false, build signatures are removed
keepWhitespace = false
[related]
threshold = 80
includeNewer = true
toLower = false
[[related.indices]]
name = "categories"
weight = 100
[[related.indices]]
name = "tags"
weight = 80
[[related.indices]]
name = "date"
weight = 10Update your
parameters in ./config/_default/params.toml:
# Hugo
title = "My Thulite site"
description = "Congrats on setting up a new Thulite project!"
images = ["cover.png"]
# Debug
[render_hooks.image]
errorLevel = 'ignore' # ignore (default), warning, or error (fails the build)
[render_hooks.link]
errorLevel = 'ignore' # ignore (default), warning, or error (fails the build)
highlightBroken = false # true or false (default)Update your
page frontmatter in ./content/*.md files:
---
title : "My Thulite site"
description: "Congrats on setting up a new Thulite project!"
lead: "Congrats on setting up a new Thulite project!"
date: 2026-04-28T17:01:41+02:00
lastmod: 2026-04-28T17:01:52+02:00
draft: false
---Update settings, parameters, and page frontmatter.
Update settings and parameters.
Update your project's parameters