支持的命令行开关
Electron支持的命令行开关.
您可以 在app 模块的ready事件生效之前,使用app.commandLine.appendSwitch将它们附加到您的应用程序的主要脚本中:
const { app } = require('electron')
app.commandLine.appendSwitch('remote-debugging-port', '8315')
app.commandLine.appendSwitch('host-rules', 'MAP * 127.0.0.1')
app.whenReady().then(() => {
// 在这里写入你的代码
})
Electron CLI 标志
--auth-server-whitelist=url
启用了集成身份验证的以逗号分隔的服务器列表。
例如:
--auth-server-whitelist='*example.com, *foobar.com, *baz'
则任何以example.com
, foobar.com
, baz
结尾的url
, 都需要考虑集成验证. 没有 *
前缀的 URL 必须完全匹配。
--auth-negotiate-delegate-whitelist=url
需要授权用户凭据的以逗号分隔的服务器列表。 没有 *
前缀的 URL 必须完全匹配。
--disable-ntlm-v2
禁用NTLM v2的posix平台,对别处没有影响。
--disable-http-cache
禁用HTTP请求的磁盘缓存.