mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
22 lines
500 B
JavaScript
22 lines
500 B
JavaScript
import { searchProPlugin } from 'vuepress-plugin-search-pro'
|
|
import { redirectPlugin } from 'vuepress-plugin-redirect'
|
|
|
|
export default [
|
|
searchProPlugin({
|
|
indexContent: true,
|
|
autoSuggestions: true,
|
|
customFields: [
|
|
{
|
|
getter: (page) => page.frontmatter.category,
|
|
formatter: "Category: $content",
|
|
},
|
|
{
|
|
getter: (page) => page.frontmatter.tag,
|
|
formatter: "Tag: $content",
|
|
},
|
|
],
|
|
}),
|
|
redirectPlugin({
|
|
autoLocale: true,
|
|
})
|
|
] |