mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
18 lines
395 B
JavaScript
18 lines
395 B
JavaScript
import { searchProPlugin } from 'vuepress-plugin-search-pro'
|
|
|
|
export default [
|
|
searchProPlugin({
|
|
indexContent: true,
|
|
autoSuggestions: true,
|
|
customFields: [
|
|
{
|
|
getter: (page) => page.frontmatter.category,
|
|
formatter: "Category: $content",
|
|
},
|
|
{
|
|
getter: (page) => page.frontmatter.tag,
|
|
formatter: "Tag: $content",
|
|
},
|
|
],
|
|
})
|
|
] |