forked from google/docsy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
42 lines (42 loc) · 1.11 KB
/
config.toml
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
[module]
_merge = "deep"
# work around https://github.com/golang/go/issues/37397
[[module.mounts]]
source = "assets/bootstrap/scss/_vendor"
target = "assets/vendor/bootstrap/scss/vendor"
# mount asserts directory
[[module.mounts]]
source = "assets"
target = "assets"
# mount i18n directory
[[module.mounts]]
source = "i18n"
target = "i18n"
# mount layouts directory
[[module.mounts]]
source = "layouts"
target = "layouts"
# mount static directory
[[module.mounts]]
source = "static"
target = "static"
# Dependencies are brought in as modules
# and mount points are declared
[[module.imports]]
path = "github.com/twbs/bootstrap"
disable = false
[[module.imports.mounts]]
source = "scss"
target = "assets/vendor/bootstrap/scss"
[[module.imports.mounts]]
source = "dist/js"
target = "assets/vendor/bootstrap/dist/js"
[[module.imports]]
path = "github.com/FortAwesome/Font-Awesome"
disable = false
[[module.imports.mounts]]
source = "scss"
target = "assets/vendor/Font-Awesome/scss"
[[module.imports.mounts]]
source = "webfonts"
target = "static/webfonts"