We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c36b98 commit 65fdf02Copy full SHA for 65fdf02
config/polyfills.js
@@ -8,3 +8,7 @@ if (typeof Promise === 'undefined') {
8
9
// fetch() polyfill for making API calls.
10
require('whatwg-fetch');
11
+
12
+// Object.assign() is commonly used with React.
13
+// It will use the native implementation if it's present and isn't buggy.
14
+Object.assign = require('object-assign');
package.json
@@ -66,6 +66,7 @@
66
"http-proxy-middleware": "0.17.0",
67
"jest": "14.1.0",
68
"json-loader": "0.5.4",
69
+ "object-assign": "4.1.0",
70
"opn": "4.0.2",
71
"path-exists": "3.0.0",
72
"postcss-loader": "0.9.1",
0 commit comments