I\'m using webpack with vuejs. Webpack does its thing, but when I look at the outputted app.js file, it gives me this error.
\'import\' and \'export\
I got this error when I was missing a closing bracket.
Simplified recreation:
const foo = () => { return ( 'bar' ); }; <== this bracket was missing export default foo;