The main project configuration file in config/_default
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| ##
## Main configuration file for the Perplex documentation
##
# The domain of the site
baseURL: http://perplex.desider.at
title: Perplex
DefaultLanguageCode: en-us
DefaultContentLanguage: en
metaDataFormat: yaml
pluralizeListTitles: false
enableEmoji: true
enableGitInfo: true
disableHugoGeneratorInject: false
timeout: "600s"
outputs:
home: [HTML, RSS]
section: [HTML]
taxonomies:
tag: tags
category: categories
series: series
author: authors
refLinksErrorLevel: WARNING
ignoreErrors:
- error-missing-instagram-accesstoken
- error-remote-getjson
caches:
assets:
dir: :resourceDir/_gen
maxAge: -1
getcsv:
dir: :cacheDir/:project
maxAge: -1
getjson:
dir: :cacheDir/:project
maxAge: -1
getresource:
dir: :resourceDir/:project
maxAge: -1
images:
dir: :resourceDir/_gen
maxAge: -1
modules:
dir: :cacheDir/modules
maxAge: -1
build:
buildStats:
enable: true
|