Added babel-polyfill to webpack config.
const path = require('path'); | |
module.exports = { | |
- entry: './src/main.js', | |
+ entry: ['babel-polyfill', './src/main.js'], | |
output: { | |
filename: 'bundle.js', | |
path: path.resolve(__dirname, 'public'), | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment