diff --git a/package-lock.json b/package-lock.json index 5df6519f..e4d146a8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "1.5.7", + "version": "1.5.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "1.5.7", + "version": "1.5.8", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index cb8bc5ec..a28fbeff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "1.5.7", + "version": "1.5.8", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "engines": { diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index 9cd1f2eb..53b42105 100644 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -96,6 +96,21 @@ window.addEventListener("load", () => { const miniSearch = new MiniSearch({ fields: ["title", "description", "tags", "type"], + idField: "id", + storeFields: [ + "id", + "title", + "url", + "description", + "type", + "tags", + "total_plays", + ], + searchOptions: { + boost: { title: 2, tags: 1.5 }, + prefix: true, + fuzzy: 0.3, + }, }); const $form = document.querySelector(".search__form"); const $input = document.querySelector(".search__form--input"); @@ -280,4 +295,4 @@ window.addEventListener("load", () => { updateSearchResults(nextResults); }); })(); -}); \ No newline at end of file +});