hokein / electron-sample-apps

Sample apps for Electron
Apache License 2.0
3.9k stars 939 forks source link

<webview> is disabled in Electron 5 and above #66

Closed corwin-of-amber closed 4 years ago

corwin-of-amber commented 4 years ago

According to this: https://github.com/electron/electron/blob/v7.0.0/docs/api/webview-tag.md#enabling

You have to explicitly enable <webview> support in BrowserWindow:

   win = new BrowserWindow({
      width: 800, height: 600,
      webPreferences: {webviewTag: true}
   })