1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-10-02 08:06:42 +02:00
Files
flexsearch/example/browser-module/document-worker-extern-config/config.primaryTitle.js
Thomas Wilkerling 8f9096d6e6 use tagged version
2025-03-17 08:48:39 +01:00

17 lines
534 B
JavaScript

import { Encoder, Charset } from "https://rawcdn.githack.com/nextapps-de/flexsearch/0.8.0/dist/flexsearch.bundle.module.min.js";
import EnglishPreset from "https://rawcdn.githack.com/nextapps-de/flexsearch/0.8.0/dist/module/lang/en.js";
export default {
tokenize: "forward",
encoder: new Encoder(
Charset.LatinBalance,
EnglishPreset,
{
normalize: function(str){
return str.toLowerCase();
},
filter: false,
minlength: 3
}
)
};