The default theme of Island.js has a built-in full-text search function, which has the following features:
FlexSearch
which means the search speed is very fast, and pure client-side search, no network request.Of course, you can also turn off the full-text search function by following config:
import { defineConfig } from 'islandjs';
export default defineConfig({
themeConfig: {
search: false
}
});