From 747b70acae42261465695e6ab1d38e7da645ef7d Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 21 Jul 2026 21:40:11 +0200 Subject: Fix missing static folder files When using Hugo module mounts the `static` folder needs to be explicitly mounted. --- hugo.toml | 3 +++ 1 file changed, 3 insertions(+) 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" -- cgit v1.3.1