Fix Telegramas

This commit is contained in:
2025-08-25 15:04:09 -03:00
parent 0d33db9e6d
commit 55954e18a7
21 changed files with 498 additions and 76 deletions

10
pdf.worker.entry.js Normal file
View File

@@ -0,0 +1,10 @@
/**
* PDF.js worker entry file.
*
* This file is identical to Mozilla's pdf.worker.entry.js, with one exception being placed inside
* this bundle, not theirs.
*/
(typeof window !== 'undefined' ? window : {}).pdfjsWorker =
// @ts-expect-error - pdfjs-dist does not ship with types
await import('pdfjs-dist/build/pdf.worker.mjs');
export {};