Skip to content

Instantly share code, notes, and snippets.

@samsch
Created April 14, 2017 17:44
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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