summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2026-07-21 21:40:11 +0200
committerxengineering <me@xengineering.eu>2026-07-21 21:40:11 +0200
commit747b70acae42261465695e6ab1d38e7da645ef7d (patch)
tree2bb0a965329365960ec7aba1ca3383ccd8700652
parent5622871907a115c6cb8a360f4f7dd89da8692647 (diff)
downloadwebsite-747b70acae42261465695e6ab1d38e7da645ef7d.tar
website-747b70acae42261465695e6ab1d38e7da645ef7d.tar.zst
website-747b70acae42261465695e6ab1d38e7da645ef7d.zip
Fix missing static folder filesHEADmain
When using Hugo module mounts the `static` folder needs to be explicitly mounted.
-rw-r--r--hugo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/hugo.toml b/hugo.toml
index da61d46..844f344 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -10,5 +10,8 @@ disableKinds = ["taxonomy", "term", "RSS"]
ordered = false
startLevel = 4
[[module.mounts]]
+source = "static"
+target = "static"
+[[module.mounts]]
source = "simple.css/simple.css"
target = "static/simple.css"