summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-09 21:10:28 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-09-10 08:47:05 +0200
commitd4611c4322dabfd8d2520232be578388029867db (patch)
treec68d7e14430b1f65021af6742b27a5496eb4aea4 /docs
parent20af9a078189ce1e92a1d2047c90fba2a4e91827 (diff)
modules: Add noVendor to module config
Fixes #7647
Diffstat (limited to 'docs')
-rw-r--r--docs/content/en/hugo-modules/configuration.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/content/en/hugo-modules/configuration.md b/docs/content/en/hugo-modules/configuration.md
index c97e8d5a2..2fb4ec5e6 100644
--- a/docs/content/en/hugo-modules/configuration.md
+++ b/docs/content/en/hugo-modules/configuration.md
@@ -18,11 +18,16 @@ toc: true
{{< code-toggle file="config">}}
[module]
+noVendor = ""
proxy = "direct"
noProxy = "none"
private = "*.*"
{{< /code-toggle >}}
+
+noVendor {{< new-in "0.75.0" >}}
+: A optional Glob pattern matching module paths to skip when vendoring, e.g. "github.com/**"
+
proxy
: Defines the proxy server to use to download remote modules. Default is `direct`, which means "git clone" and similar.