This page covers the main configuration tasks for a Thulite project.

Update settings

Update your settings in ./config/_default/hugo.toml:

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 = 10

Update parameters

Update your parameters in ./config/_default/params.toml:

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 page frontmatter

Update your page frontmatter in ./content/*.md files:

_index.md
---
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
---

Integrations

Thulite SEO

Update settings, parameters, and page frontmatter.

Thulite Images

Update settings and parameters.

Thulite SVG

Update your project's parameters