Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/site/scripts/orama-search/get-documents.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
Loading