We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dd2deb commit 5bc8e98Copy full SHA for 5bc8e98
1 file changed
apps/site/scripts/orama-search/get-documents.mjs
@@ -60,6 +60,8 @@ export const getArticles = async () => {
60
// Read content + metadata
61
return Promise.all(
62
files
63
+ // Exclude blog posts: they tend to surface in feature searches and
64
+ // direct users to a release announcement rather than the actual docs.
65
.filter(path => !path.startsWith('blog'))
66
.map(async path => ({
67
content: await readFile(join(root, path), 'utf8'),
0 commit comments