This is an automated email from the ASF dual-hosted git repository. tison pushed a commit to branch refactor in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks-website.git
commit 15390edae222e6d6f93b8ce14210e1fe1c884b44 Author: tison <[email protected]> AuthorDate: Fri Dec 16 11:22:08 2022 +0800 go through site configs Signed-off-by: tison <[email protected]> --- docusaurus.config.js | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 1b551dc..ce6cd22 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -6,7 +6,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula'); /** @type {import('@docusaurus/types').Config} */ const config = { - title: 'Apache Kvrocks (Incubating)', + title: 'Apache Kvrocks (incubating)', tagline: 'Apache Kvrocks is a distributed key value NoSQL database that uses RocksDB as storage engine and is compatible with Redis protocol.', url: 'https://kvrocks.apache.org', baseUrl: '/', @@ -156,9 +156,9 @@ const config = { }, copyright: `<div style="text-align: left;"> <div> - <p style="font-family: Avenir-Medium;font-size: 14px;color: #999;line-height: 20px;"> Apache Kvrocks is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necess [...] + <p style="font-family: Avenir-Medium,serif;font-size: 14px;color: #999;line-height: 20px;"> Apache Kvrocks is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not [...] </div> - <div style="border-top: 1px solid #ccc;min-height: 60px;line-height: 20px;text-align: center;font-family: Avenir-Medium;font-size: 14px;color: #999;display: flex;align-items: center;"><span>Copyright © ${new Date().getFullYear()} The Apache Software Foundation. Apache Kvrocks, Kvrocks, and its feather logo are trademarks of The Apache Software Foundation.</span></div> + <div style="border-top: 1px solid #ccc;min-height: 60px;line-height: 20px;text-align: center;font-family: Avenir-Medium,serif;font-size: 14px;color: #999;display: flex;align-items: center;"><span>Copyright © ${new Date().getFullYear()} The Apache Software Foundation. Apache Kvrocks, Kvrocks, and its feather logo are trademarks of The Apache Software Foundation.</span></div> </div>`, }, prism: { @@ -168,7 +168,15 @@ const config = { }), themes: [ - [require.resolve("@easyops-cn/docusaurus-search-local"), { hashed: true }], + [ + require.resolve("@easyops-cn/docusaurus-search-local"), + { + hashed: true, + indexDocs: true, + indexPages: true, + language: ["en", "zh"], + } + ], ] };
