diff --git a/documentation/docs/.vitepress/config.mts b/documentation/docs/.vitepress/config.mts index 0d7b787690..727cf66a65 100644 --- a/documentation/docs/.vitepress/config.mts +++ b/documentation/docs/.vitepress/config.mts @@ -19,7 +19,15 @@ let userConfig = defineConfig({ head: head, base: SITE_BASE, sitemap: { - hostname: hostname + hostname: hostname, + transformItems: (items) => { + items.push({ + url: `${hostname}javadoc/index.html`, + changefreq: 'weekly', + priority: 0.8 + }) + return items + } }, appearance: 'dark', themeConfig: {