I'm trying to integrate Algolia with Docusaurus. I created a crawler using the Docusaurus Algolia v2 example and created an index after running it. In the Algolia web, when I test the index using the browse tab, it seems to bring results as expected, but in Docusaurus, there are no results.
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
algolia: {
appId: 'XXXXXXX',
apiKey: 'YYYYYYYYYYYYYY',
indexName: 'ZZZZZ',
contextualSearch: true,
},
This is what fixed it for me:
I found some similar answers online but they failed. For me the key was using a new index name. That was the only way create the index correctly and get to see the "docusaurus_tag" checkbox.