/webpack.config.js.diff Secret
Created
April 14, 2017 17:44
Star
You must be signed in to star a gist
Added babel-polyfill to webpack config.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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