| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- # Docsy config
- #
- # cSpell:ignore docsy fortawesome fontawesome webfonts
- params:
- time_format_blog: Monday, January 02, 2006
- time_format_default: January 2, 2006
- rss_sections: [blog]
- outputFormats:
- PRINT:
- baseName: index
- isHTML: true
- mediaType: text/html
- path: _print
- permalinkable: false
- module:
- hugoVersion:
- extended: true
- min: 0.146.0
- mounts:
- - source: assets
- target: assets
- - source: node_modules/bootstrap
- target: assets/vendor/bootstrap
- - source: node_modules/@fortawesome/fontawesome-free
- target: assets/vendor/Font-Awesome
- - source: i18n
- target: i18n
- - source: layouts
- target: layouts
- - source: static
- target: static
- - source: node_modules/@fortawesome/fontawesome-free/webfonts
- target: static/webfonts
- # Mounts for projects using Docsy as an NPM package. The source path prefix
- # "../.." moves out of themes/docsy so that Docsy can find its dependencies.
- - source: ../../node_modules/bootstrap
- target: assets/vendor/bootstrap
- - source: ../../node_modules/@fortawesome/fontawesome-free
- target: assets/vendor/Font-Awesome
- - source: ../../node_modules/@fortawesome/fontawesome-free/webfonts
- target: static/webfonts
- # Mounts for module installations,
- # needed to work around a known bug in Go’s module management.
- - source: assets/_vendor/bootstrap/scss
- target: assets/vendor/bootstrap/scss/vendor
- imports:
- - path: github.com/twbs/bootstrap
- disable: false
- mounts:
- - source: scss
- target: assets/vendor/bootstrap/scss
- - source: dist/js
- target: assets/vendor/bootstrap/dist/js
- - path: github.com/FortAwesome/Font-Awesome
- disable: false
- mounts:
- - source: scss
- target: assets/vendor/Font-Awesome/scss
- - source: webfonts
- target: static/webfonts
|