External URLs don't open in webview

103 Views Asked by At

i'm making electron app using npm create electron-vite (typescript, react). To load url, I'm using webview. It works fine, but external urls don't open, new-window and setWindowOpenHandler just not called.

app.on("web-contents-created", (e, contents) => {
  // web-contents-created function work's fun, contents is real object.
  if (contents.getType() == "webview") {
    // Listen for any new window events
    contents.setWindowOpenHandler(({ url }: HandlerDetails) => {
      console.log("Click!");
      e.preventDefault();
      console.log(url);
      shell.openExternal(url);
      return { action: "deny" };
    });
  }
}

I also tried to add events from main.jsx, still doesn't work.

0

There are 0 best solutions below