Stop using the Hugo Server params recommended by YT videos, they seem to make things break and also cause caching issues which were not previously present.

This commit is contained in:
2025-11-16 07:24:03 -07:00
parent 8a4446f7e3
commit f48fcaf610

View File

@@ -1014,8 +1014,8 @@
alias reload-shell="reload-bash"
alias reload="reload-bash"
alias_hugo_server: |
alias hugo-server-dev="hugo server -D --gc --ignoreCache --noHTTPCache --disableFastRender"
alias hugo-server-stage="hugo server --gc --noHTTPCache --disableFastRender"
alias hugo-server-dev="hugo server -D --gc" # --ignoreCache --noHTTPCache --disableFastRender"
alias hugo-server-stage="hugo server --gc" # --noHTTPCache --disableFastRender"
alias hugo-server-prod="hugo server --gc --minify"
alias hugo-server="hugo-server-dev"
global_functions: |