将VuePress与Algolia快速搜索框一起使用。

我在Algolia的文档中找不到如何增加下拉列表中显示的结果数量。当前默认为5。

只需在config.js中的algolia选项中添加“hitsPerPage:10”即可。

最佳答案

在获得Algolia支持的电子邮件后,他们解决了这个问题。

您需要在'hitsPerPage:10'中添加'algoliaOptions'

algolia: {
   apiKey: 'your key',
   appId: 'your app id',
   indexName: 'your index name',
   algoliaOptions: {
     hitsPerPage: 10,
   },

关于vue.js - VuePress- Algolia 增加结果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52019383/

10-12 12:35