We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af0a854 commit 8be8452Copy full SHA for 8be8452
packages/react-scripts/config/webpack.config.js
@@ -178,6 +178,9 @@ module.exports = function(webpackEnv) {
178
.replace(/\\/g, '/')
179
: isEnvDevelopment &&
180
(info => path.resolve(info.absoluteResourcePath).replace(/\\/g, '/')),
181
+ // Added to prevent conflicts within app when multiple webpack runtimes
182
+ // (from different compilation) are used on the same webpage.
183
+ jsonpFunction: '__REACT_APP',
184
},
185
optimization: {
186
minimize: isEnvProduction,
0 commit comments