-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Open
Labels
buildRelated to the build systemRelated to the build system
Description
As we know, set a title for a markdown can make minisearch build an index for the page, which works well.
When I make a vite plugin to add titles in batches, minisearch cannot correctly make indexes:
defineConfig({
/* ... */
vite: {
plugins: [
{
transform: (code, id) => {
return isMd(id) ? (getTitle(id) + code) : code
}
},
],
},
})
Is that possible to make it work?
Metadata
Metadata
Assignees
Labels
buildRelated to the build systemRelated to the build system