import workerSource from 'pdfjs-dist/build/pdf.worker.min.mjs?raw';
// (...)
connect() {
const blob = new Blob([workerSource], { type: 'application/javascript' });
GlobalWorkerOptions.workerSrc = URL.createObjectURL(blob);
this.loadPdf();
}