-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhugo.toml
More file actions
48 lines (43 loc) · 1.03 KB
/
hugo.toml
File metadata and controls
48 lines (43 loc) · 1.03 KB
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
# modules
[outputFormats.sveltia]
baseName = "sveltia-config"
mediaType = 'application/json'
root = true
[module]
[module.hugoVersion]
extended = true
# we have to explicitly mount these, otherwise they just disappear. dont really know why
[[module.mounts]]
source = "assets"
target = "assets"
[[module.mounts]]
source = "layouts"
target = "layouts"
[[module.mounts]]
source = "i18n"
target = "i18n"
[[module.mounts]]
source = "static"
target = "static"
# include our icons
[[module.imports]]
path = "github.com/tabler/tabler-icons"
[[module.imports.mounts]]
source = "icons"
target = "assets/icons/"
# include bootstrap
[[module.imports]]
path = "github.com/twbs/bootstrap"
ignoreConfig = true
[[module.imports.mounts]]
source = "scss"
target = "assets/scss/bootstrap"
[[module.imports.mounts]]
source = "js"
target = "assets/js/bootstrap"
[[module.mounts]]
source = "bootstrap"
target = "assets/scss/bootstrap/vendor"
# include popperjs, a library required by bootstrap
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2"