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
I created a simple object similar to the example:
import { expose } from 'comlink' export const SortWorker = { hello: 'world', sort() { return 'sort worker ran!' }, } expose(SortWorker)
But I see this in the console: Uncaught SyntaxError: Unexpected token '<'
Uncaught SyntaxError: Unexpected token '<'
I am using create-react-app with hooks.
The text was updated successfully, but these errors were encountered:
your route seems to be returning HTML instead of JS, check the body of the request
Sorry, something went wrong.
CRA uses Webpack 4 which does not natively support importing Workers. You need to add the worker-loader. Once CRA updates to use Webpack 5, you may be able to remove this loader.
worker-loader
No branches or pull requests
I created a simple object similar to the example:
But I see this in the console:
Uncaught SyntaxError: Unexpected token '<'
I am using create-react-app with hooks.
The text was updated successfully, but these errors were encountered: