We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The generated .js file contains
function fetchRelative(src) { const url = new URL (src, document.currentScript?.src || document.baseURI).href return fetch(url) }
but document is not defined for WebWorkers. I want WebWorkers to prevent UI unresponsiveness for long-running function calls.
document
The text was updated successfully, but these errors were encountered:
8d0987d
That should be fixed. Thanks for the report!
Sorry, something went wrong.
Fix launch script to work in Web workers
fb8dcdf
Fixes #9
No branches or pull requests
The generated .js file contains
but
document
is not defined for WebWorkers. I want WebWorkers to prevent UI unresponsiveness for long-running function calls.The text was updated successfully, but these errors were encountered: