We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94614b5 commit 89bda9dCopy full SHA for 89bda9d
src/index.ts
@@ -58,7 +58,10 @@ let server: ChildProcess | null = null;
58
59
app.commandLine.appendSwitch('ignore-connections-limit', 'app.httptoolkit.tech');
60
app.commandLine.appendSwitch('disable-renderer-backgrounding');
61
-app.commandLine.appendSwitch('js-flags', '--expose-gc'); // Expose window.gc in the UI
+app.commandLine.appendSwitch('js-flags', [
62
+ '--expose-gc', // Expose window.gc in the UI
63
+ '--max-old-space-size=16384', // Increase max UI memory, to support very large sessions
64
+].join(' '));
65
66
const createWindow = (logStream: WriteStream) => {
67
// Load the previous window state, falling back to defaults
0 commit comments