electron 暴露 window.gc() api
// 使得渲染进程可以访问window.gc() api主动进行垃圾回收
// 参考:
// https://github.com/nklayman/vue-cli-plugin-electron-builder/issues/696
// https://github.com/electron/electron/pull/23578
app.commandLine.appendSwitch('js-flags', '--expose-gc');