支持的Chrom命令行开关

可以在你的项目的main脚本的ready事件前使用app.commondLine.appendSwitch

1
2
3
4
5
6
7
const {app} = require('electron');
app.commandLine.appendSwitch('remote-debugging-port', '8315');
app.commandLine.appendSwitch('host-rules', 'MAP * 127.0.0.1');

app.on('ready', () => {
// Your code here
});

API TODO