I want to take an to an external website, but I do not want it to happen inside electron, I want it to be in the default browser.
I've tried this code:
const {shell} = require('electron')
shell.openExternal('https://github.com')
Docs from here : electron docs
But its does't work on Mac os (When id clicked the , its nothing happened...).
So... how can I do that?
Thanks!