Official plugin to provide search capabilities through Orama on any Vitepress website!
For the complete usage guide, please refer to the official plugin documentation.
// .vitepress/config.js
import { defineConfig } from 'vitepress'
import { OramaPlugin } from '@orama/plugin-vitepress'
export default defineConfig({
// ...
extends: {
vite: {
plugins: [OramaPlugin()]
},
}
})