From f8a804afb85a79837a61aed6dfac2c4dcd886a6b Mon Sep 17 00:00:00 2001 From: Anis SLIM Date: Thu, 15 Mar 2018 09:40:06 +0100 Subject: [PATCH] Resolution of problem with some versions of npm/node I've experienced problems when trying to launch the example project using Node@8.9.4/npm@5.6.0. The solution was found here : https://github.com/webpack/webpack/issues/3242 --- examples/counter/webpack.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/counter/webpack.config.js b/examples/counter/webpack.config.js index ffd971e..a80e85d 100644 --- a/examples/counter/webpack.config.js +++ b/examples/counter/webpack.config.js @@ -10,7 +10,8 @@ module.exports = { ], output: { path: path.join(__dirname, 'dist'), - filename: 'bundle.js' + filename: 'bundle.js', + publicPath:'' }, plugins: [ new HtmlWebpackPlugin({