Evening,
I\'m looking into using electron to package an existing angular2 build. I thought I had a dry run working but the actual packaging seems to be failing (see fina
Just change the BrowserWindow' options:
new BrowserWindow({
webPreferences: {
webSecurity: false
}
})
If window's url points to a remote source, like http://..., browser will not allow to load local resource, unless you set the options above.