Built-in Search
Built-in document search of Fumadocs
Fumadocs supports searching document based on Orama.
As the built-in search of Fumadocs, It is the default but also recommended option since it's easier to setup and totally free.
Setup
You can create the search route handler from the source object, or search indexes.
From Source
Create a route handler from Source object.
From Search Indexes
Pass search indexes to the function.
Each index needs a structuredData
field.
Usually, it has been provided by your content source (e.g. Fumadocs MDX).
It can also be processed from Markdown/MDX document using the Structure remark plugin.
Client
You can query it using:
-
Fumadocs UI: The built-in Search UI supports it out-of-the-box.
-
Search Client:
Prop Type Default type
"fetch"
- api?
string
-
Tag Filter
Support filtering by tag, it's useful for implementing multi-docs similar to this documentation.
and update your search client:
-
Fumadocs UI: Configure Tag Filter on Search UI.
-
Search Client: pass a tag to the hook.
Index by Content
Index with the raw content of document (unrecommended).
Internationalization
-
createFromSource()
:Configure i18n on source object (in
loader
function).lib/source.ts -
createSearchAPI()
:Use
createI18nSearchAPI
for i18n functionality.app/api/search/route.ts
Update Search Client
For Fumadocs UI
You can ignore this, Fumadocs UI handles this when you have i18n configured correctly.
Add locale
to the search client, this will only allow pages with specified locale to be searchable by the user.
Special Languages
If your language is not on the Orama Supported Languages list, you have to configure them manually:
See Orama Docs for more details.
Static Export
To work with Next.js static export, use staticGET
from search server.
staticGET
is also available on createSearchAPI
.
and update your search clients:
-
Fumadocs UI: See Static Export guide.
-
Search Client:
On your search client, use
static
instead offetch
.Prop Type Default type
"static"
- from?
string
- initOrama?
((locale?: string | undefined) => AnyOrama | Promise<AnyOrama>)
-
Be Careful
Static Search requires clients to download the exported search indexes. For large docs sites, its size can be really big.
Especially with i18n (e.g. Chinese tokenizers), the bundle size of tokenizers can exceed ~500MB. You should use 3rd party solutions like Algolia for these cases.
Custom Algorithm
You can port your own search algorithm by returning a list of SortedResult
from your custom /api/search/route.ts
route handler (API Endpoint). You can also integrate it
with Fumadocs UI.
Prop | Type | Default |
---|---|---|
id | string | - |
url | string | - |
type | "page" | "heading" | "text" | - |
content | string | - |
Headless
You can host the search server on Express or Elysia, without Next.js.
How is this guide?