Skip to content

Instantly share code, notes, and snippets.

@KrzysztofZawisla
Created May 24, 2021 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KrzysztofZawisla/5d76d297485267974ddc90bc787b136e to your computer and use it in GitHub Desktop.
Save KrzysztofZawisla/5d76d297485267974ddc90bc787b136e to your computer and use it in GitHub Desktop.
Electron max memory
import { app } from "electron";
const memory: number = 8192; // memory in mb
app.commandLine.appendSwitch("js-flags", `--max-old-space-size=${memory}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment