From eea094a5dd7bb4f0ff0fcf6dfdc7b5261cbfdb03 Mon Sep 17 00:00:00 2001 From: Mark Galloway Date: Tue, 7 Mar 2017 10:07:40 -0700 Subject: [PATCH] Update README.md Setting `path: 'public'` on L:34 causes the demo app to not be able to find bundle.js and run as indicated on L:76. `path: 'public'` should not be set until L:106 --- lessons/11-productionish-server/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/lessons/11-productionish-server/README.md b/lessons/11-productionish-server/README.md index 30582eba..17656c08 100644 --- a/lessons/11-productionish-server/README.md +++ b/lessons/11-productionish-server/README.md @@ -31,7 +31,6 @@ In the root directly, go open up `webpack.config.js` and add the publicPath '/' ``` // webpack.config.js output: { - path: 'public', filename: 'bundle.js', publicPath: '/' },