From 3d7fa1746bf697573164599a5ee735ecb18e580b Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 25 May 2025 17:04:11 +0200 Subject: [PATCH] Fix: Add explicit language config for .Site.IsMultilingual --- config.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config.toml b/config.toml index de30332..5fcf09a 100644 --- a/config.toml +++ b/config.toml @@ -3,6 +3,13 @@ languageCode = "en-us" title = "My New Hugo Site" theme = "lightbi" # Using the LightBi theme +DefaultContentLanguage = "en-us" # Explicitly set the default + +[languages] + [languages."en-us"] + languageName = "English" + weight = 1 + # Enable syntax highlighting pygmentsCodeFences = true pygmentsUseClasses = true