Open
Description
The browser extension doesn't seem to be detecting my a canvas that I have passed to a webworker
const offscreen = canvas.transferControlToOffscreen();
const worker = new Worker();
worker.postMessage(
{
type: "main/canvas-init",
payload: {
canvas: offscreen,
width: window.innerWidth,
height: window.innerHeight,
player: fetchLocalStoragePlayerData(),
}
},
[offscreen]
);
Is this supported? Should I manually use the spector.js lib instead?