最近再使用electron的时候总是报错打不开,记录一下这个问题的解决方法;
ts
// 再主进程中添加下面的即可
app.commandLine.appendSwitch('no-sandbox');
官网看了下:https://www.electronjs.org/zh/docs/latest/api/command-line-switches
--no-sandbox
禁用 Chromium 沙箱。 强制渲染器进程和Chromium助手进程以非沙盒化运行。 应该只在测试时使用。