Site Search
By default, CelestialDocs sites include full-text search powered by Fuse.js, which is a fast and low-bandwidth search tool for static sites.
No configuration is required to enable search. Build and deploy your site, then use the search bar in the site header to find content.
Info
You can trigger search using keyboard shortcut also. Just press ctrl
+ K
Hide search
In config.js
, you can disable the search function by keeping the value of hide_search
as true
.
// config.js
export const docconfig = {
...
hide_search: true,
...
};