From 2f61a3aee0add57cf955d9a4af513a9717acc0fe Mon Sep 17 00:00:00 2001 From: tidusjar Date: Mon, 30 Dec 2019 21:38:30 +0000 Subject: [PATCH] reduce memory as appveyor has a limit of 6gb --- src/Ombi/ClientApp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/ClientApp/package.json b/src/Ombi/ClientApp/package.json index 99f2d80fb..08aa54baf 100644 --- a/src/Ombi/ClientApp/package.json +++ b/src/Ombi/ClientApp/package.json @@ -4,7 +4,7 @@ "scripts": { "ng": "ng", "start": "ng serve --port 3578 --configuration hmr", - "build": "node --max_old_space_size=8192 node_modules/@angular/cli/bin/ng build --prod", + "build": "node --max_old_space_size=6144 node_modules/@angular/cli/bin/ng build --prod", "lint": "ng lint" }, "private": true,