Many ie style fixes (#9728)

This commit is contained in:
Keith Holliday
2017-12-20 10:33:21 -06:00
committed by GitHub
parent 310bdf8cb5
commit 6e0b6171c6
9 changed files with 29 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
// add hot-reload related code to entry chunks
Object.keys(baseWebpackConfig.entry).forEach((name) => {
baseWebpackConfig.entry[name] = ['./webpack/dev-client'].concat(baseWebpackConfig.entry[name]);
baseWebpackConfig.entry[name] = baseWebpackConfig.entry[name].concat('./webpack/dev-client');
});
module.exports = merge(baseWebpackConfig, {