cheatsheets
Hugo
Apr 27, 2024
| 1 min read
|
Chris Zietlow
Recovering Software Engineer, Philomath, Shitty Photographer, Technologist, believes the oxford comma isn't optional.
Compiling website
1# Recompile
2hugo --gc
1# Recompile in developer friendly mode
2# -D Enabled compiling drafts
3# -F content with future post dates
4# - ignore cache
5hugo -D -F --ignoreCache
1# Recompile assets for production
2# - remove unused cache after build
3# - minify supported output
4hugo --gc β¦