Robust Search

Ahhh I’m sorry Andre I linked the wrong algolia plugin! My bad.

I use a forked version of https://mattie-bundle.mattiebelt.com/ but the published version of that plugin should work well for you.

Here’s an Strapi blog about it: Add Search to a Strapi & Next.js project with Algolia

The quick start (Quick Start Guides - Mattie Bundle for Strapi - docs) is also a great place to…get started :sweat_smile:

Your config would look like this:

  search: {
    enabled: true,
    config: {
      provider: 'algolia',
      providerOptions: {
        apiKey: env('ALGOLIA_PROVIDER_ADMIN_API_KEY'),
        applicationId: env('ALGOLIA_PROVIDER_APPLICATION_ID'),
      },
      contentTypes: [{ name: 'api::product.product', fields: ['id'] }],
    },
  },

And then add whatever other fields you want to the fields array.