-
Notifications
You must be signed in to change notification settings - Fork 365
Closed
Labels
Milestone
Description
I can't make it work with webpack --watch and concurrently
"scripts": {
"dev": "concurrently --kill-others \"npm run clean && npm run server\" \"npm run dev-server\"",
"server": "webpack-dashboard -- nodemon Server.js",
"server-prod": "cross-env NODE_ENV=production nodemon Server.js",
"dev-server": "webpack --watch --hot",
"prod": "cross-env NODE_ENV=production npm run clean && npm run build-prod && npm run server-prod",
"clean": "rimraf dist",
"build-prod": "webpack --config config/webpack.config.prod.js --progress"
},
pk-pranshu