-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
One of my applications creates a worker using something like this:
const workerUrl = new URL("./assets/worker/main.js", import.meta.url);
const worker = new Worker(workerUrl.href, { type: "module" });
Normally this works fine and the url resolves to http://localhost:8080/client/src/assets/worker/main.js
. But once I start inspecting, workerUrl.href
is turned into blob://http://localhost:8080/./assets/worker/main.js
and the creation of the worker fails.
This particular worker doesn't touch WebGPU so I wouldn't mind if this particular worker wasn't intercepted.
SheepTester
Metadata
Metadata
Assignees
Labels
No labels