*[https://qiita.com/pochman/items/64b34e9827866664d436 contextBridgeについて]
contextBridgeを使えば、nodeIntegration: false,contextIsolation: trueでもIPC通信できる
*contextBridgeを使う場合、contextIsolation:true とする必要あり
*main.js
<pre>
let win = new BrowserWindow({
width: 600,
height: 400,
webPreferences:{
contextIsolation: true, // false -> window object共有、contextBridge利用時はtrue
preload: path.join(__dirname, 'preload.js'),
// enableRemoteModule: false
// nodeIntegration: true,
}
});
// win.loadURL('https://service.typea.info/blogwiki');
win.loadFile('index.html');
</pre>
==オブジェクト==