From 1d44ebc33991e15d75aba83f8618ca19e566e1cc Mon Sep 17 00:00:00 2001 From: sebastien Date: Fri, 31 Oct 2025 11:07:23 +0100 Subject: [PATCH] re-enable showLastUpdate for localized sites --- website/docusaurus.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docusaurus.config.ts b/website/docusaurus.config.ts index db981104a5..aa809456dc 100644 --- a/website/docusaurus.config.ts +++ b/website/docusaurus.config.ts @@ -162,7 +162,8 @@ function getLocalizedConfigValue(key: keyof typeof ConfigLocalized) { // By default, we don't want to run "git log" commands on i18n sites // This makes localized sites build much slower on Netlify // See also https://github.com/facebook/docusaurus/issues/11208 -const showLastUpdate = process.env.DOCUSAURUS_CURRENT_LOCALE === defaultLocale; +// const showLastUpdate = process.env.DOCUSAURUS_CURRENT_LOCALE === defaultLocale; +const showLastUpdate = true; export default async function createConfigAsync() { return {