Skip to content

Commit f8a804a

Browse files
authored
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 : webpack/webpack#3242
1 parent a07f76b commit f8a804a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/counter/webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ module.exports = {
1010
],
1111
output: {
1212
path: path.join(__dirname, 'dist'),
13-
filename: 'bundle.js'
13+
filename: 'bundle.js',
14+
publicPath:''
1415
},
1516
plugins: [
1617
new HtmlWebpackPlugin({

0 commit comments

Comments
 (0)