vuepress-plugin-meilisearch2
v0.4.0
Published
Added the meilisearch search plugin to Vuepress2.x
Downloads
29
Maintainers
Readme
vuepress-plugin-meilisearch2
import { defineUserConfig } from 'vuepress';
import { MeiliSearchPlugin } from 'vuepress-plugin-meilisearch2';
defineUserConfig({
plugins: [
MeiliSearchPlugin({
host: '',
apiKey: '',
index: '',
})
]
})
选项
host
- 主机apiKey
- 密钥index
- 要查询的索引limit
- 设置单个查询返回的最大文档数,默认20
offset
- 在搜索结果中设置起始点,有效地跳过给定数量的文档,默认0
filter
- 使用筛选表达式来优化搜索结果,详见filtering