Personal_Website/assets/js/lunr.js

22 lines
458 B
JavaScript

const lunr = require('lunr');
fetch("/js/lunr/PagesIndex.json")
.then(pagesIndex => {
const lunrIndex = lunr(function() {
this.field('title', {
boost: 10,
});
this.field('tags', {
boost: 5,
});
this.field('content');
this.ref('href');
});
pagesIndex.forEach(page => {
lunrIndex.add(page);
});
})
;