Skip to content

Commit

Permalink
Fix error overlay 'Object.assign' issue in IE by including polyfills …
Browse files Browse the repository at this point in the history
…before webpack client (facebook#3046)
  • Loading branch information
tharakawj authored and morgs32 committed Sep 5, 2017
1 parent 2ad6e00 commit 9e4fa1f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/react-scripts/config/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ module.exports = {
// The first two entry points enable "hot" CSS and auto-refreshes for JS.
entry: {
[mainEntry]: [
// Include an alternative client for WebpackDevServer. A client's job is to
// We ship a few polyfills by default:
require.resolve('./polyfills'),// Include an alternative client for WebpackDevServer. A client's job is to
// connect to WebpackDevServer by a socket and get notified about changes.
// When you save a file, the client will either apply hot updates (in case
// of CSS changes), or refresh the page (in case of JS changes). When you
Expand All @@ -78,10 +79,6 @@ module.exports = {
// require.resolve('webpack-dev-server/client') + '?/',
// require.resolve('webpack/hot/dev-server'),
require.resolve('react-dev-utils/webpackHotDevClient'),
// We ship a few polyfills by default:
require.resolve('./polyfills'),
// Errors should be considered fatal in development
require.resolve('react-error-overlay'),
// Finally, this is your app's code:
paths.appIndexJs,
// We include the app code last so that if there is a runtime error during
Expand Down

0 comments on commit 9e4fa1f

Please sign in to comment.