From 3e12c4c1d7e83bb64aa903ceb8bcfd332a1e7087 Mon Sep 17 00:00:00 2001 From: Dana Breseman Date: Tue, 9 Jun 2026 10:36:28 +0200 Subject: [PATCH 1/5] Test: Disable Git info --- config/development/hugo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/development/hugo.toml b/config/development/hugo.toml index 4afbb38125f..8c1c800a5e4 100644 --- a/config/development/hugo.toml +++ b/config/development/hugo.toml @@ -9,3 +9,6 @@ title = "Mendix DEVELOPMENT Documentation" buildDrafts=true buildExpired=true buildFuture=true + +# Speed up development builds by disabling Git info lookup (which means last modified date won't show) +enableGitInfo = false \ No newline at end of file From b8e727bf41496f14a2824562171aa8dffc0673d1 Mon Sep 17 00:00:00 2001 From: Dana Breseman <142491015+dbreseman@users.noreply.github.com> Date: Tue, 9 Jun 2026 13:01:28 +0200 Subject: [PATCH 2/5] Trigger build --- content/en/docs/genai/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/genai/_index.md b/content/en/docs/genai/_index.md index 3947e8b5e1b..ebd50979ab4 100644 --- a/content/en/docs/genai/_index.md +++ b/content/en/docs/genai/_index.md @@ -10,7 +10,7 @@ aliases: ## Introduction -With Mendix's agentic capabilities, you can build AI-powered features into your applications using leading AI models and your own data. +With Mendix's agentic capabilities, you can build AI-powered features into your applications using leading AI models and your own data. Mendix supports a variety of agentic and generative AI capabilities that you can integrate into your applications. Some typical use cases include the following: From 95d97d2f3f3ddf2613a8f6cceac10505be25d117 Mon Sep 17 00:00:00 2001 From: Dana Breseman Date: Tue, 9 Jun 2026 13:52:39 +0200 Subject: [PATCH 3/5] Cache Hugo modules, re-enable Git info --- .travis.yml | 2 ++ config/development/hugo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 66aaa9309ec..02c4cc75d12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,9 +39,11 @@ branches: cache: # Cache node_modules to avoid re-downloading on every build +# Cache Hugo module downloads (theme) # See https://docs.travis-ci.com/user/caching/ directories: - node_modules + - $HOME/.cache/hugo_cache before_install: ############### diff --git a/config/development/hugo.toml b/config/development/hugo.toml index 8c1c800a5e4..509547275bc 100644 --- a/config/development/hugo.toml +++ b/config/development/hugo.toml @@ -11,4 +11,4 @@ buildExpired=true buildFuture=true # Speed up development builds by disabling Git info lookup (which means last modified date won't show) -enableGitInfo = false \ No newline at end of file +# enableGitInfo = false \ No newline at end of file From a93dff0c482f9d441c0dc8b951aee636b15b2f3c Mon Sep 17 00:00:00 2001 From: Dana Breseman <142491015+dbreseman@users.noreply.github.com> Date: Tue, 9 Jun 2026 14:12:34 +0200 Subject: [PATCH 4/5] Trigger build post cache --- content/en/docs/genai/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/genai/_index.md b/content/en/docs/genai/_index.md index ebd50979ab4..228184565a6 100644 --- a/content/en/docs/genai/_index.md +++ b/content/en/docs/genai/_index.md @@ -10,7 +10,7 @@ aliases: ## Introduction -With Mendix's agentic capabilities, you can build AI-powered features into your applications using leading AI models and your own data. +With Mendix's agentic capabilities, you can build AI-powered features into your applications using leading AI models and your own data! Mendix supports a variety of agentic and generative AI capabilities that you can integrate into your applications. Some typical use cases include the following: From 24c78be9e7d15cae8ef9fddd77282c13135efd8c Mon Sep 17 00:00:00 2001 From: Dana Breseman Date: Tue, 9 Jun 2026 14:45:14 +0200 Subject: [PATCH 5/5] Disable print on dev, remove Hugo module cache --- .travis.yml | 3 +-- config/development/hugo.toml | 7 ++++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 02c4cc75d12..9098e9a0333 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,11 +39,10 @@ branches: cache: # Cache node_modules to avoid re-downloading on every build -# Cache Hugo module downloads (theme) # See https://docs.travis-ci.com/user/caching/ directories: - node_modules - - $HOME/.cache/hugo_cache +# - $HOME/.cache/hugo_cache before_install: ############### diff --git a/config/development/hugo.toml b/config/development/hugo.toml index 509547275bc..3a80c1c9168 100644 --- a/config/development/hugo.toml +++ b/config/development/hugo.toml @@ -11,4 +11,9 @@ buildExpired=true buildFuture=true # Speed up development builds by disabling Git info lookup (which means last modified date won't show) -# enableGitInfo = false \ No newline at end of file +# enableGitInfo = false + +# Disable print during development +[outputs] + section = ["HTML"] + page = ["HTML"] \ No newline at end of file