Skip to content

Commit

Permalink
docs(guides) Correct main entry in package.json (#2479)
Browse files Browse the repository at this point in the history
fix: The main entry in package.json has incorrect settings. As the previous sections of the tutorial, I think it should be point to "src/index.js" instead.
  • Loading branch information
aletuan authored and montogeek committed Sep 2, 2018
1 parent 58ff30d commit 827608f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/guides/production.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ __package.json__
"name": "development",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"main": "src/index.js",
"scripts": {
- "start": "webpack-dev-server --open",
+ "start": "webpack-dev-server --open --config webpack.dev.js",
Expand Down

0 comments on commit 827608f

Please sign in to comment.