This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git

commit 44c804ad1c651d110353fdcf0262a22bf4ac5394
Author: tison <[email protected]>
AuthorDate: Fri Jan 13 16:34:57 2023 +0800

    Avoid regenerate all for new version out
    
    Signed-off-by: tison <[email protected]>
---
 docusaurus.config.js | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/docusaurus.config.js b/docusaurus.config.js
index 67a6eb0f7a3..04a0885ab1c 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -161,11 +161,13 @@ module.exports = {
                     position: "right",
                     items: [
                         {
-                            to: `/docs/${versions[0]}/concepts-overview/`,
+                            type: 'doc',
+                            docId: 'concepts-overview',
                             label: "Pulsar Concepts",
                         },
                         {
-                            to: `/docs/${versions[0]}/`,
+                            type: 'doc',
+                            docId: 'about',
                             label: "Quickstart",
                         },
                         {
@@ -175,7 +177,8 @@ module.exports = {
                     ],
                 },
                 {
-                    to: `/docs/${versions[0]}/`,
+                    type: 'doc',
+                    docId: 'about',
                     position: "right",
                     label: "Docs",
                 },

Reply via email to