Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-04-07 17:49:34 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-04-15 18:22:55 +0300
commit33d5f805923eb50dfb309d024f6555c59a339846 (patch)
treecba8fde34849640bc09bd68d85c5d7a6ba042add /common
parent509d39fa6ddbba106c127b7923a41b0dcaea9381 (diff)
Add webp image encoding support
Fixes #5924
Diffstat (limited to 'common')
-rw-r--r--common/hugo/hugo.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/common/hugo/hugo.go b/common/hugo/hugo.go
index 6e94a8a33..d8d1c7c12 100644
--- a/common/hugo/hugo.go
+++ b/common/hugo/hugo.go
@@ -120,7 +120,11 @@ func GetDependencyList() []string {
}
if IsExtended {
- deps = append(deps, formatDep("github.com/sass/libsass", "3.6.4"))
+ deps = append(
+ deps,
+ formatDep("github.com/sass/libsass", "3.6.4"),
+ formatDep("github.com/webmproject/libwebp", "v1.2.0"),
+ )
}
bi, ok := debug.ReadBuildInfo()