--- trunk/docs/app/search/route.ts 2024/07/29 17:59:26 575 +++ trunk/docs/app/search/route.ts 2024/09/07 09:38:45 626 @@ -24,6 +24,10 @@ if (lowercasedIndex) { for (const i in lowercasedIndex) { + if (results.length >= 15) { + break; + } + const titleIncludes = lowercasedIndex[i].title?.includes(query); const descriptionIncludes = lowercasedIndex[i].description?.includes(query); @@ -35,8 +39,8 @@ match: titleIncludes ? ("title" as const) : descriptionIncludes - ? ("description" as const) - : ("data" as const), + ? ("description" as const) + : ("data" as const), }); } }