Skip to content

Commit

Permalink
build: use production Node env (#832)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunanoordin authored Jul 15, 2024
1 parent 134d9ac commit 348032b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start": "BABEL_ENV=development check-engines && check-dependencies && webpack-dashboard -p 3001 -- webpack-dev-server --config ./webpack.config.js",
"test": "echo 'This project has no tests.' || true",
"eslint": "eslint .",
"build": "BABEL_ENV=production check-engines && check-dependencies && webpack --config webpack.production.config.js"
"build": "export NODE_ENV=production ; BABEL_ENV=production check-engines && check-dependencies && webpack --config webpack.production.config.js"
},
"engines": {
"node": ">=18",
Expand Down

0 comments on commit 348032b

Please sign in to comment.