We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b229387 commit a5b1c47Copy full SHA for a5b1c47
services/rebuild-app.js
@@ -5,7 +5,7 @@
5
const { exec } = require('child_process');
6
7
module.exports = () => new Promise((resolve, reject) => {
8
- const buildProcess = exec('npm run build'); // Trigger the build command
+ const buildProcess = exec('NODE_OPTIONS="--max-old-space-size=512" npm run build'); // Trigger the build command
9
10
let output = ''; // Will store console output
11
0 commit comments