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
It's recommended that Electron renderers have nodeIntegration: false and contextIsolation: true and this means no access to require. This in turn means that it's currently not possible to create a fiddle that uses dependencies in the renderer which is quite a limitation.
The text was updated successfully, but these errors were encountered:
I help maintain @sentry/electronand when developers open GitHub issues it would be great to say "modify this fiddle to show us what's not working". There are quite a few ways to use and configure Electron and fiddle is a great way to offer up some starting points for bug reports.
However, this isn't possible with any library that requires running in the isolated renderer context as there's no way to have dependencies in the isolated renderer.
It's recommended that Electron renderers have
nodeIntegration: false
andcontextIsolation: true
and this means no access torequire
. This in turn means that it's currently not possible to create a fiddle that uses dependencies in the renderer which is quite a limitation.The text was updated successfully, but these errors were encountered: