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.

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,
  ...
};