Reputation: 3570
I was getting an error SECURITY_ERR: DOM Exception 18 when I deployed to my production server.
I narrowed it down to the Web Worker request.
Upvotes: 3
Views: 804
Reputation: 3570
This is due the deployment process pushing the worker script out to a cdn causing the worker to be on a different domain.
This was fixed by placing the worker on the local server as to avoid a cross domain request
Upvotes: 1