Tim Fish
Tim Fish
We're hoping to drop `opentelemetry-instrumentation-fetch-node` in favour of `@opentelemetry/instrumentation-undici` and it will likely no longer be an optional dependency which should help solve this issue.
I've managed to reproduce the issue with the supplied reproduction and I think it has something to do with custom protocols but I don't know the exact cause yet. For...
Yep, confirmed that loading the renderer via file URL in production works around the issue: ```ts const url = pathToFileURL( path.join(__dirname, `../renderer/${MAIN_WINDOW_VITE_NAME}/index.html`), ); mainWindow.loadURL(url.href); ```