Skip to content

Commit 8f54102

Browse files
tharakawjkasperpeulen
authored andcommitted
Fix error overlay 'Object.assign' issue in IE by including polyfills before webpack client (facebook#3046)
1 parent dd460e2 commit 8f54102

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-scripts/config/webpack.config.dev.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ module.exports = {
5555
// This means they will be the "root" imports that are included in JS bundle.
5656
// The first two entry points enable "hot" CSS and auto-refreshes for JS.
5757
entry: [
58+
// We ship a few polyfills by default:
59+
require.resolve('./polyfills'),
5860
// Include an alternative client for WebpackDevServer. A client's job is to
5961
// connect to WebpackDevServer by a socket and get notified about changes.
6062
// When you save a file, the client will either apply hot updates (in case
@@ -66,8 +68,6 @@ module.exports = {
6668
// require.resolve('webpack-dev-server/client') + '?/',
6769
// require.resolve('webpack/hot/dev-server'),
6870
require.resolve('react-dev-utils/webpackHotDevClient'),
69-
// We ship a few polyfills by default:
70-
require.resolve('./polyfills'),
7171
// Finally, this is your app's code:
7272
paths.appIndexJs,
7373
// We include the app code last so that if there is a runtime error during

0 commit comments

Comments
 (0)