Skip to content

Commit

Permalink
fix: increase memory limit to 3gb for webpack devServer
Browse files Browse the repository at this point in the history
  • Loading branch information
willworks committed Apr 7, 2021
1 parent 5350cdd commit 4545b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build:prod": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.dv.babel.js --color -p --progress --hide-modules --display-optimization-bailout",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p --progress --hide-modules --display-optimization-bailout",
"build:clean": "rimraf ./build",
"start": "cross-env NODE_ENV=development node server",
"start": "cross-env NODE_ENV=development node --max-old-space-size=3072 server",
"start:production": "npm run test && npm run build && npm run start:prod",
"start:prod": "cross-env NODE_ENV=production node server",
"clean:all": "npm run analyze:clean && npm run test:clean && npm run build:clean",
Expand Down

0 comments on commit 4545b0c

Please sign in to comment.