diff options
author | Franck Cuny <franck@fcuny.net> | 2021-06-20 13:13:18 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-06-20 13:18:59 -0700 |
commit | d051d5a474461628ae3af941fd65b8976df52a26 (patch) | |
tree | d621ad3f581c858f5f1e8cd6ef9915e1e1824962 /users/fcuny/blog/config.toml | |
parent | fly: add configuration for fly.io (diff) | |
download | world-d051d5a474461628ae3af941fd65b8976df52a26.tar.gz |
hugo: don't enable git info
The docker image used by fly.io to deploy a static website with hugo does not come with git, which prevents us to use the option `enableGitInfo`. This is not critical for now, so let's disable it so we can deploy.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/blog/config.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/fcuny/blog/config.toml b/users/fcuny/blog/config.toml index 6100ba5..532ff03 100644 --- a/users/fcuny/blog/config.toml +++ b/users/fcuny/blog/config.toml @@ -2,7 +2,7 @@ baseURL = "http://fcuny.net/" languageCode = "en-us" title = "Franck's rambling" publishDir = "docs" -enableGitInfo = true +enableGitInfo = false [params] homeText = "A collection of notes" |