Skip to content

Commit

Permalink
Increase Node.js memory limit in start script for improved performance
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Dec 4, 2024
1 parent 5dc6ab6 commit 41d347a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenTelemetryIngest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
"start": "node --require ts-node/register Index.ts",
"start": "export NODE_OPTIONS='--max-old-space-size=8096' && node --require ts-node/register Index.ts",
"compile": "tsc",
"clear-modules": "rm -rf node_modules && rm package-lock.json && npm install",
"dev": "npx nodemon",
Expand Down

0 comments on commit 41d347a

Please sign in to comment.