From dfce04b22af18758fad197efb656757627f062ec Mon Sep 17 00:00:00 2001 From: hengyunabc Date: Mon, 8 Jul 2024 15:34:23 +0800 Subject: [PATCH] fix doc version from maven central --- .../docs/.vuepress/plugins/vuepress-plugin-loadVersion/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/.vuepress/plugins/vuepress-plugin-loadVersion/index.js b/site/docs/.vuepress/plugins/vuepress-plugin-loadVersion/index.js index 33edb752fe..1ce5cba05e 100644 --- a/site/docs/.vuepress/plugins/vuepress-plugin-loadVersion/index.js +++ b/site/docs/.vuepress/plugins/vuepress-plugin-loadVersion/index.js @@ -8,7 +8,7 @@ export function loadVersionPlugin() { const getVersionByMaven = async () => { return await fetch( - "https://search.maven.org/solrsearch/select?q=arthas&rows=1&wt=json", + "https://search.maven.org/solrsearch/select?q=arthas-site&rows=1&wt=json", ) .then((res) => res.json()) .then((res) => res.response.docs[0].latestVersion);