From 5bc8e984553a8336f2a604ea8fd6b85d8968e477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guilherme=20Ara=C3=BAjo?= Date: Thu, 26 Feb 2026 15:35:52 -0300 Subject: [PATCH] chore: add blog exclude explain comment --- apps/site/scripts/orama-search/get-documents.mjs | 2 ++ 1 file changed, 2 insertions(+) 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'),