diff --git a/apps/site/scripts/orama-search/get-documents.mjs b/apps/site/scripts/orama-search/get-documents.mjs index b6d4ffdf73fc2..0363ff4e2358c 100644 --- a/apps/site/scripts/orama-search/get-documents.mjs +++ b/apps/site/scripts/orama-search/get-documents.mjs @@ -60,6 +60,8 @@ export const getArticles = async () => { // Read content + metadata return Promise.all( files + // Exclude blog posts: they tend to surface in feature searches and + // direct users to a release announcement rather than the actual docs. .filter(path => !path.startsWith('blog')) .map(async path => ({ content: await readFile(join(root, path), 'utf8'),