This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
hui/internal/conf/hugo.go
2024-07-31 19:10:32 +02:00

14 lines
327 B
Go

package conf
import (
"fmt"
)
var (
// HugoVersion is the version of Hugo used.
HugoVersion = "0.124.1"
// HugoReleaseURL is the URL where Hugo can be downloaded from.
HugoReleaseURL = fmt.Sprintf("https://github.com/gohugoio/hugo/releases/download/v%s/hugo_extended_%s_linux-amd64.tar.gz", HugoVersion, HugoVersion)
)