blob: f51cf4d902f8d00fbf906559bc2301b0ae1f7c8b (
plain)
1
2
3
4
5
6
7
8
9
|
new Worker(new URL("./worker1.ts", import.meta.url), {
type: "module",
});
new Worker(new URL("./worker2.ts", import.meta.url), {
type: "module",
});
new Worker(new URL("./worker3.ts", import.meta.url), {
type: "module",
});
|