Skip to content

Commit

Permalink
Resolution of problem with some versions of npm/node
Browse files Browse the repository at this point in the history
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 : webpack/webpack#3242
  • Loading branch information
k-soze committed Mar 15, 2018
1 parent a07f76b commit f8a804a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/counter/webpack.config.js
Expand Up @@ -10,7 +10,8 @@ module.exports = {
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js'
filename: 'bundle.js',
publicPath:''
},
plugins: [
new HtmlWebpackPlugin({
Expand Down

0 comments on commit f8a804a

Please sign in to comment.