Skip to content

Commit 9c278a9

Browse files
authoredJul 18, 2023
Update docs for usage with ESM / ES6
The existing docs show a relative path, not the actual npm module bundle path. I believe this should be correct for ESM/ES6 type environments and will hopefully prevent confusion as found in nextapps-de#341 etc.
1 parent 1243fd8 commit 9c278a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -445,12 +445,12 @@ There are 3 types of indexes:
445445

446446
The most of you probably need just one of them according to your scenario.
447447

448-
### ES6 Modules (Browser):
448+
### ESM / ES6 Modules (Browser:
449449

450450
```js
451-
import Index from "./index.js";
452-
import Document from "./document.js";
453-
import WorkerIndex from "./worker/index.js";
451+
import Index from "flexsearch/dist/module";
452+
import Worker from "flexsearch/dist/module/worker";
453+
import Doc from "flexsearch/dist/module/document";
454454

455455
const index = new Index(options);
456456
const document = new Document(options);

0 commit comments

Comments
 (0)
Please sign in to comment.