File: docusaurus.config.js — Line 100
Description
The Algolia search index name is set to "metataflow" which is a typo.
The correct name should be "metaflow". Because the index name does not match
what is registered in Algolia, every search query on the docs site returns zero
results. The search bar appears completely broken to all users visiting the
documentation.
Current Code
algolia: {
appId: "5IZ8L9TJQL",
apiKey: "246d8e1f6a4c455ba30172edcd0399d5",
indexName: "metataflow", // typo — extra "ta"
},
Fixed Code
algolia: {
appId: "5IZ8L9TJQL",
apiKey: "246d8e1f6a4c455ba30172edcd0399d5",
indexName: "metaflow", // correct name
},
What Changes
|
Behavior |
| Before |
Searching anything on the docs site returns no results — search is broken for all users |
| After |
Search works correctly and returns relevant documentation pages as expected |
File:
docusaurus.config.js— Line 100Description
The Algolia search index name is set to
"metataflow"which is a typo.The correct name should be
"metaflow". Because the index name does not matchwhat is registered in Algolia, every search query on the docs site returns zero
results. The search bar appears completely broken to all users visiting the
documentation.
Current Code
Fixed Code
What Changes