63 lines
1.9 KiB
TOML
Executable File
63 lines
1.9 KiB
TOML
Executable File
######################## default configuration ####################
|
|
baseURL = "https://joren.blog/"
|
|
title = "Joren's Site"
|
|
theme = ["professors-hugo"]
|
|
# Default time zone for time stamps; use any valid tz database name: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
|
timeZone = "Europe/Brussels"
|
|
# post pagination
|
|
pagination.pagerSize = 6 # see https://gohugo.io/extras/pagination/
|
|
# post excerpt
|
|
summaryLength = 10 # see https://gohugo.io/content-management/excerpts/
|
|
|
|
########################### Services #############################
|
|
[services]
|
|
[services.googleAnalytics]
|
|
ID = 'G-MEASUREMENT_ID' # see https://gohugo.io/templates/internal/#configure-google-analytics
|
|
|
|
############################# Build ##############################
|
|
[build]
|
|
writeStats = true
|
|
|
|
############################# Outputs ##############################
|
|
[outputs]
|
|
home = ["HTML", "RSS", "JSON", "WebAppManifest"]
|
|
|
|
############################# Imaging ##############################
|
|
[imaging]
|
|
# See https://github.com/disintegration/imaging
|
|
# Default JPEG or WebP quality setting. Default is 75.
|
|
quality = 80
|
|
resampleFilter = "Lanczos"
|
|
|
|
############################# Caches ###############################
|
|
[caches]
|
|
[caches.images]
|
|
dir = ":resourceDir/_gen"
|
|
maxAge = "720h"
|
|
|
|
[caches.assets]
|
|
dir = ":resourceDir/_gen"
|
|
maxAge = "720h"
|
|
|
|
|
|
############################# Markup ###############################
|
|
[markup]
|
|
[markup.goldmark.renderer]
|
|
unsafe = true
|
|
|
|
[markup.highlight]
|
|
style = 'monokai' # see https://xyproto.github.io/splash/docs/all.html
|
|
|
|
|
|
########################### Media types ###########################
|
|
[mediaTypes]
|
|
[mediaTypes."application/manifest+json"]
|
|
suffixes = ["webmanifest"]
|
|
|
|
|
|
############################ Output Format ###########################
|
|
[outputFormats]
|
|
[outputFormats.WebAppManifest]
|
|
mediaType = "application/manifest+json"
|
|
rel = "manifest"
|