diff options
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | exampleSite/config/production/config.yaml | 5 |
2 files changed, 8 insertions, 0 deletions
@@ -14,3 +14,6 @@ # Temporary lock file while building. .hugo_build.lock + +# This file includes all tags, classes, and ids from your *.html templates. +hugo_stats.json diff --git a/exampleSite/config/production/config.yaml b/exampleSite/config/production/config.yaml new file mode 100644 index 0000000..838d022 --- /dev/null +++ b/exampleSite/config/production/config.yaml @@ -0,0 +1,5 @@ +build: + # This tells Hugo to write a hugo_stats.json file to the project + # root as part of the build. It includes all tags, classes, and ids + # from your *.html templates. + writeStats: true |
