Skip to content

Instantly share code, notes, and snippets.

@samsch
Created April 14, 2017 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsch/0df1433b029dda87d73f092cf119d837 to your computer and use it in GitHub Desktop.
Save samsch/0df1433b029dda87d73f092cf119d837 to your computer and use it in GitHub Desktop.
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