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
audioworklet-polyfill/src/realm.js
Line 36 in 8f41231
Supplied worklet modules must be loaded as module scripts according to https://drafts.css-houdini.org/worklets/#code-idempotency.
The text was updated successfully, but these errors were encountered:
It probably needs script.type = 'module' after the element creation.
script.type = 'module'
Sorry, something went wrong.
I was wrong. I have learned module scripts cannot be eval()ed. It must be rewritten using import() somehow.
eval()
import()
No branches or pull requests
audioworklet-polyfill/src/realm.js
Line 36 in 8f41231
Supplied worklet modules must be loaded as module scripts according to https://drafts.css-houdini.org/worklets/#code-idempotency.
The text was updated successfully, but these errors were encountered: