Great tutorial! Thank you :)
Step 11 seems to be missing something. I keep getting the error:
Uncaught SyntaxError: Unexpected token < (bundle.js:1)
I'm pretty sure the cause is that it's missing:
publicPath: '/'
from webpack.config.js
output: {
path: 'public',
filename: 'bundle.js',
publicPath: '/'
},