This commit is contained in:
Jori Lallo
2016-04-28 22:25:37 -07:00
parent 2f9233222d
commit cce82b3d43
79 changed files with 1495 additions and 496 deletions

View File

@ -6,7 +6,10 @@ commonWebpackConfig = require('./webpack.config');
productionWebpackConfig = Object.assign(commonWebpackConfig, {
cache: true,
devtool: 'cheap-module-source-map',
entry: './src/index',
entry: [
'babel-polyfill',
'./src/index',
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',