I am trying to configure webpack according to this tutorial and keep getting the same error. I am having trouble debugging these 2 messages:
ERROR in ./app.js M
When I was importing with the syntax
import Component from './components/component';
I was getting the module parse error. To fix it, I had to specify .jsx and it worked
.jsx
import Component from `./components/component.jsx`.
It wasn't a config error at all. I'm on babel 6 with hot loader.