From 6e3c5c038896b7e72122eb35078027feae5ad0f7 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Thu, 9 Sep 2021 10:17:55 -0400 Subject: [PATCH] reduce member boost --- scripts/make-search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-search.js b/scripts/make-search.js index f5fe29010..47f1265f5 100644 --- a/scripts/make-search.js +++ b/scripts/make-search.js @@ -65,7 +65,7 @@ console.log('Generating search index for documentation'); this.ref('id'); // id this.field('t', { boost: 10 }); // title this.field('h', { boost: 5 }); // headings - this.field('m', { boost: 5 }); // members (props, methods, events, etc.) + this.field('m', { boost: 2 }); // members (props, methods, events, etc.) this.field('c'); // content files.map((file, index) => {