Yarn run start should not set NODE_ENV=production

Running the app without nodemon is a valid use case.
This commit is contained in:
Robert Schäfer 2018-10-20 01:40:37 +02:00
parent 0cbe082899
commit fda241ae11

View File

@ -8,7 +8,7 @@
"postinstall": "yarn styleguide:build",
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"start": "cross-env node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"styleguide": "cd ./styleguide && yarn dev",