You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
updated the sample screenshot URL and
comented:
// Create a new worker
const worker = new Worker('worker.js');
Added:
// Robust: resolves worker path relative to this module script
const worker = new Worker(new URL('./worker.js', import.meta.url), { type: 'module' });
0 commit comments