跳到主要内容

给网站配置搜索

1,安装 docusaurus-search-local 插件

想必网站配置好后的你很需要一个全局搜索功能,这样很酷,对吧!其实这很简单。

npm install --save @easyops-cn/docusaurus-search-local

2,声明这个插件

只需要在docusaurus.config.js文件中,声明这个插件

themes: [
// ... Your other themes.
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
// ... Your options.
// `hashed` is recommended as long-term-cache of index file is possible.
hashed: true,
// For Docs using Chinese, The `language` is recommended to set to:
// ```
// language: ["en", "zh"],
// ```
},
],
],

然后就可以了,但是它在你完成部署之后才会生效。

本篇文章受 CC BY-NC-SA 4.0 协议保护,转载请注明出处。