You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2022. It is now read-only.
In the documentation it says you can create a web worker using the following code
import { AnalysisWebWorker } from "yoastseo";
const worker = new AnalysisWebWorker( self );
worker.register();
This code however directly imports the node module which isn't possible in a web worker, can someone explain how to implement this code? I'm using Angular 6 and it's web workers don't support importing of node modules as above.