Skip to content

Commit fd7e8e6

Browse files
authored
Merge pull request #49 from iroy2000/allow-multiple-project-same-time
Make sure development port is configurable
2 parents bd3a084 + 96a5da9 commit fd7e8e6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-redux-boilerplate",
3-
"version": "0.9.58",
3+
"version": "1.0.0",
44
"description": "React Redux Boilerplate is a workflow boilerplate that make life easier for developers by providing a virtual development environment and production ready build process framework out of the box.",
55
"scripts": {
66
"dev": "cross-env NODE_ENV=development DASHBOARD_PORT=9901 webpack-dashboard -p 9901 -c red -t dashboard -- node bin/commands.js dev",

webpack.config.dev.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ const webpackDevOutput = {
1919
webpackConfig.output = Object.assign(webpackConfig.output, webpackDevOutput);
2020

2121
webpackConfig.devServer = {
22+
port: config.get('port'),
2223
clientLogLevel: "error",
2324
compress: true,
2425
noInfo: true,

0 commit comments

Comments
 (0)