fix: drop unused search text
This commit is contained in:
parent
e9c08c1a90
commit
ed560d1bfe
3 changed files with 3 additions and 5 deletions
|
@ -15,7 +15,6 @@ export const searchIndex = (collection) => {
|
|||
id,
|
||||
url,
|
||||
title: `📝: ${post.data.title}`,
|
||||
text: post.data.description,
|
||||
tags: post.data.tags.filter((tag) => tag !== 'posts'),
|
||||
})
|
||||
id++;
|
||||
|
@ -27,7 +26,6 @@ export const searchIndex = (collection) => {
|
|||
id,
|
||||
url: link.url,
|
||||
title: `🔗: ${link.title}`,
|
||||
text: link.summary,
|
||||
tags: link.tags,
|
||||
})
|
||||
id++;
|
||||
|
|
Reference in a new issue