a393f4cf4 Add a Spellcheck GitHub Action and config 8b6b1c381 netlify: Bump to Hugo 0.93.3 84515c183 Delete deployment-with-nanobox.md dd45f9899 Fix typos in docs e69de81a9 Update build-options.md 7745b7891 netlify: Hubo 0.93.2 037d63364 Clarify GitHub Pages Branches 94660c34b add missing %s 325de15e2 fix link to latest release note since the release notes were moved to GitHub: https://gohugo.io/news/no-more-releasenotes-here/ dbff41d01 Update introduction.md 0ecd627f7 netlify: Hugo 0.93.1 a74e16582 Update diagrams.md 33e310956 Add Goat example to test styling fa0100a5b Update diagrams.md 64ac75367 Adjust diagram docs f1d600044 Update theme 95bedff1a netlify: Bump to Hugo 0.93.0 849a8437f Merge commit 'c1398b91a9f4c67876b31feb67516b252e654d3c' c0c60c43c docs: Regenerate docs helper 2c63fe518 cod: Regen CLI docs f33ba4e5a CodeblockContext method renames 979b47968 Move the Goat template to the correct place 2df37e9e8 Add Markdown diagrams and render hooks for code blocks bd8037d43 Allow images to be cropped without being resized 8b2af4b49 modules: Add modules.Workspace config for Go 1.18 46b99dea1 Add --printUnusedTemplates 1285302c9 commands: Rename --i18n-warnings to printI18nWarnings dea2242c6 commands: Rename --path-warnings, --print-men to --printPathWarnings, --printMemoryUsage db782ea46 deps: Update github.com/alecthomas/chroma v0.9.4 => v0.10.0 git-subtree-dir: docs git-subtree-split: a393f4cf43829011e96d109de2f039a9b05b2d16
5.9 KiB
title | linktitle | description | date | categories | keywords | menu | weight | sections_weight | toc | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Configure Modules | Configure Modules | This page describes the configuration options for a module. | 2019-07-24 |
|
|
|
10 | 10 | true |
Module Config: Top level
{{< code-toggle file="config">}} [module] noVendor = "" proxy = "direct" noProxy = "none" private = "." replacements = "" workspace = "" {{< /code-toggle >}}
- noVendor {{< new-in "0.75.0" >}}
- A optional Glob pattern matching module paths to skip when vendoring, e.g. "github.com/**"
- vendorClosest {{< new-in "0.81.0" >}}
- When enabled, we will pick the vendored module closest to the module using it. The default behaviour is to pick the first. Note that there can still be only one dependency of a given module path, so once it is in use it cannot be redefined.
- proxy
- Defines the proxy server to use to download remote modules. Default is
direct
, which means "git clone" and similar. - noProxy
- Comma separated glob list matching paths that should not use the proxy configured above.
- private
- Comma separated glob list matching paths that should be treated as private.
workspace {{< new-in "0.83.0" >}}
The workspace file to use. This enables Go workspace mode. Note that this can also be set via OS env, e.g. export HUGO_MODULE_WORKSPACE=/my/hugo.work
This only works with Go 1.18+.
- replacements {{< new-in "0.77.0" >}}
- A comma separated (or a slice) list of module path to directory replacement mapping, e.g.
github.com/bep/myprettytheme -> ../..,github.com/bep/shortcodes -> /some/path
. This is mostly useful for temporary locally development of a module, and then it makes sense to set it as an OS environment variable, e.g:env HUGO_MODULE_REPLACEMENTS="github.com/bep/myprettytheme -> ../.."
. Any relative path is relate to themesDir, and absolute paths are allowed.
Note that the above terms maps directly to their counterparts in Go Modules. Some of these setting may be natural to set as OS environment variables. To set the proxy server to use, as an example:
env HUGO_MODULE_PROXY=https://proxy.example.org hugo
{{< gomodules-info >}}
Module Config: hugoVersion
If your module requires a particular version of Hugo to work, you can indicate that in the module
section and the user will be warned if using a too old/new version.
{{< code-toggle file="config">}} [module] [module.hugoVersion] min = "" max = "" extended = false
{{< /code-toggle >}}
Any of the above can be omitted.
- min
- The minimum Hugo version supported, e.g.
0.55.0
- max
- The maximum Hugo version supported, e.g.
0.55.0
- extended
- Whether the extended version of Hugo is required.
Module Config: imports
{{< code-toggle file="config">}} [module] module.imports path = "github.com/gohugoio/hugoTestModules1_linux/modh1_2_1v" ignoreConfig = false ignoreImports = false disable = false module.imports path = "my-shortcodes" {{< /code-toggle >}}
- path
- Can be either a valid Go Module module path, e.g.
github.com/gohugoio/myShortcodes
, or the directory name for the module as stored in your themes folder. - ignoreConfig
- If enabled, any module configuration file, e.g.
config.toml
, will not be loaded. Note that this will also stop the loading of any transitive module dependencies. - ignoreImports {{< new-in "0.80.0" >}}
- If enabled, module imports will not be followed.
- disable
- Set to
true
to disable the module while keeping any version info in thego.*
files. - noMounts {{< new-in "0.84.2" >}}
- Do not mount any folder in this import.
- noVendor
- Never vendor this import (only allowed in main project).
{{< gomodules-info >}}
Module Config: mounts
{{% note %}}
When the mounts
config was introduced in Hugo 0.56.0, we were careful to preserve the existing contentDir
, staticDir
, and similar configuration to make sure all existing sites just continued to work. But you should not have both: if you add a mounts
section you should remove the old contentDir
, staticDir
, etc. settings.
{{% /note %}}
{{% warning %}} When you add a mount, the default mount for the concerned target root is ignored: be sure to explicitly add it. {{% /warning %}}
Default mounts {{< code-toggle file="config">}} [module] module.mounts source="content" target="content" module.mounts source="static" target="static" module.mounts source="layouts" target="layouts" module.mounts source="data" target="data" module.mounts source="assets" target="assets" module.mounts source="i18n" target="i18n" module.mounts source="archetypes" target="archetypes" {{< /code-toggle >}}
- source
- The source directory of the mount. For the main project, this can be either project-relative or absolute and even a symbolic link. For other modules it must be project-relative.
- target
- Where it should be mounted into Hugo's virtual filesystem. It must start with one of Hugo's component folders:
static
,content
,layouts
,data
,assets
,i18n
, orarchetypes
. E.g.content/blog
. - lang
- The language code, e.g. "en". Only relevant for
content
mounts, andstatic
mounts when in multihost mode. - includeFiles (string or slice)
- One or more glob patterns matching files or directories to include. If
excludeFiles
is not set, the files matchingincludeFiles
will be the files mounted.
The glob patterns are matched to the filenames starting from the source
root, they should have Unix styled slashes even on Windows, /
matches the mount root and **
can be used as a super-asterisk to match recursively down all directories, e.g /posts/**.jpg
.
The search is case-insensitive.
{{< new-in "0.89.0" >}}
- excludeFiles (string or slice)
- One or more glob patterns matching files to exclude.